summaryrefslogtreecommitdiffstats
path: root/test/SConscript.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2002-06-05 23:35:56 (GMT)
committerSteven Knight <knight@baldmt.com>2002-06-05 23:35:56 (GMT)
commit2f7d4f660fd048edc342a989d25c94d7b52ab13e (patch)
tree20def5c6f0f7b68ab7151cac4ada5c470a3b31e0 /test/SConscript.py
parent42717c855f7cbb73d3017ac243a34491d3cc0c53 (diff)
downloadSCons-2f7d4f660fd048edc342a989d25c94d7b52ab13e.zip
SCons-2f7d4f660fd048edc342a989d25c94d7b52ab13e.tar.gz
SCons-2f7d4f660fd048edc342a989d25c94d7b52ab13e.tar.bz2
Changes from Charles Crain.
Diffstat (limited to 'test/SConscript.py')
-rw-r--r--test/SConscript.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/SConscript.py b/test/SConscript.py
index 22f7144..d1e6b6a 100644
--- a/test/SConscript.py
+++ b/test/SConscript.py
@@ -155,10 +155,10 @@ Return('foo')
test.write('SConscript5', """
-B = Builder(name = 'B', action = 'B')
+B = Builder(action = 'B')
def scan():
pass
-S = Scanner(name = 'S', function = scan)
+S = Scanner(function = scan)
A = Action("A")
""")