summaryrefslogtreecommitdiff
path: root/test/option
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2009-02-06 19:36:11 +0000
committerSteven Knight <knight@baldmt.com>2009-02-06 19:36:11 +0000
commit5c332f5daacf1eb209fcda609f163da3f3e48d9f (patch)
tree86ecea582b3c35959b38d83229455215f5d2340c /test/option
parent7d1ca323a3f81976d894ff96a072380e79f14bec (diff)
downloadscons-5c332f5daacf1eb209fcda609f163da3f3e48d9f.tar.gz
Fix misspelled method name in the section that tests Python versions
that don't support metaclasses.
Diffstat (limited to 'test/option')
-rw-r--r--test/option/debug-memoizer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/option/debug-memoizer.py b/test/option/debug-memoizer.py
index 709f2b18..ff511488 100644
--- a/test/option/debug-memoizer.py
+++ b/test/option/debug-memoizer.py
@@ -95,7 +95,7 @@ scons: warning: memoization is not supported in this version of Python \\(%s\\)
def run_and_check(test, args, desc):
test.run(arguments = args, stderr = expect_no_metaclasses)
- test.must_contain_not_contain_any_line(test.stdout(), expect)
+ test.must_not_contain_any_line(test.stdout(), expect)
for args in ['-h --debug=memoizer', '--debug=memoizer']: