summaryrefslogtreecommitdiff
path: root/test/Builder
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2017-02-28 09:16:16 -0800
committerWilliam Deegan <bill@baddogconsulting.com>2017-02-28 09:16:16 -0800
commit18152a10fca0329a3358349e0c050673877f852a (patch)
tree68a76cc925433aaefe18fff7196fe653001a61b9 /test/Builder
parentecce13ce187ef01b201b2f279304091c6510e080 (diff)
downloadscons-18152a10fca0329a3358349e0c050673877f852a.tar.gz
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 d84a9f96..f98db939 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