diff options
author | Steven Knight <knight@baldmt.com> | 2009-02-06 19:36:11 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2009-02-06 19:36:11 (GMT) |
commit | dcdbfee397b1953f4121d6910b0285b6cfb2bd9a (patch) | |
tree | 86ecea582b3c35959b38d83229455215f5d2340c | |
parent | 05353a39e046ec371fc62db776bf096cca3a4e10 (diff) | |
download | SCons-dcdbfee397b1953f4121d6910b0285b6cfb2bd9a.zip SCons-dcdbfee397b1953f4121d6910b0285b6cfb2bd9a.tar.gz SCons-dcdbfee397b1953f4121d6910b0285b6cfb2bd9a.tar.bz2 |
Fix misspelled method name in the section that tests Python versions
that don't support metaclasses.
-rw-r--r-- | test/option/debug-memoizer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/option/debug-memoizer.py b/test/option/debug-memoizer.py index 709f2b1..ff51148 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']: |