summaryrefslogtreecommitdiffstats
path: root/test/ENV.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/ENV.py')
-rw-r--r--test/ENV.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/ENV.py b/test/ENV.py
index dc97ec8..5cb2362 100644
--- a/test/ENV.py
+++ b/test/ENV.py
@@ -71,9 +71,10 @@ env['ENV']['FOO'] = foo
test.write('build.py',
r"""
+from __future__ import print_function
import os
-print 'LIST:', os.environ['LIST']
-print 'FOO:', os.environ['FOO']
+print('LIST:', os.environ['LIST'])
+print('FOO:', os.environ['FOO'])
""")
test.run()