summaryrefslogtreecommitdiffstats
path: root/test/Builder
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2017-02-28 17:16:16 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2017-02-28 17:16:16 (GMT)
commit9eb0b9064b7eb0ec089be5fc643f26552c035315 (patch)
tree68a76cc925433aaefe18fff7196fe653001a61b9 /test/Builder
parent5a7473d2fd2add15c8489cb57c4820ea0d36c3d0 (diff)
downloadSCons-9eb0b9064b7eb0ec089be5fc643f26552c035315.zip
SCons-9eb0b9064b7eb0ec089be5fc643f26552c035315.tar.gz
SCons-9eb0b9064b7eb0ec089be5fc643f26552c035315.tar.bz2
no need to write SConstruct as binary file change to normal file
Diffstat (limited to 'test/Builder')
-rw-r--r--test/Builder/different-actions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Builder/different-actions.py b/test/Builder/different-actions.py
index d84a9f9..f98db93 100644
--- a/test/Builder/different-actions.py
+++ b/test/Builder/different-actions.py
@@ -39,7 +39,7 @@ e2 = Environment()
e1.Command('out.txt', [], 'echo 1 > $TARGET')
e2.Command('out.txt', [], 'echo 2 > $TARGET')
-""")
+""",'w')
expect = TestSCons.re_escape("""
scons: *** Two environments with different actions were specified for the same target: out.txt