summaryrefslogtreecommitdiff
path: root/test/option--I.py
diff options
context:
space:
mode:
authorWilliam Blevins <wblevins001@gmail.com>2016-01-24 16:36:12 +0000
committerWilliam Blevins <wblevins001@gmail.com>2016-01-24 16:36:12 +0000
commit930ae0b1dd083b37bec64c8fa6055792be2a2116 (patch)
tree9d10b6f009624a613c6a78b71736d0416849f329 /test/option--I.py
parent6f1a00e0e368ce59e2a8b6b4a088e48f463fe94e (diff)
downloadscons-930ae0b1dd083b37bec64c8fa6055792be2a2116.tar.gz
Resolving a batch of failing tests for python 2.7.
Note: please evaluate python 3.X compliance.
Diffstat (limited to 'test/option--I.py')
-rw-r--r--test/option--I.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/option--I.py b/test/option--I.py
index d65349a0..0ca262dd 100644
--- a/test/option--I.py
+++ b/test/option--I.py
@@ -44,9 +44,9 @@ variable = "sub2/bar"
test.write('SConstruct', """
import foo
-print foo.variable
+print(foo.variable)
import bar
-print bar.variable
+print(bar.variable)
""")
test.run(arguments = '-I sub1 -I sub2 .',