diff options
| author | Steven Knight <knight@baldmt.com> | 2010-05-12 05:21:33 (GMT) |
|---|---|---|
| committer | Steven Knight <knight@baldmt.com> | 2010-05-12 05:21:33 (GMT) |
| commit | 53fc08f1c8d9d4d0174247cb34b770342fd25068 (patch) | |
| tree | db3ece8a678daf4f6d004096a05ddaaab94aa3a7 /src/engine/SCons/Node/PythonTests.py | |
| parent | c94aad42405270dcfe9225d49fbf2aa2cae0b50d (diff) | |
| download | SCons-53fc08f1c8d9d4d0174247cb34b770342fd25068.zip SCons-53fc08f1c8d9d4d0174247cb34b770342fd25068.tar.gz SCons-53fc08f1c8d9d4d0174247cb34b770342fd25068.tar.bz2 | |
Convert old-style utility classes in unit test files (*Tests.py)
to new-style classes.
Diffstat (limited to 'src/engine/SCons/Node/PythonTests.py')
| -rw-r--r-- | src/engine/SCons/Node/PythonTests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/SCons/Node/PythonTests.py b/src/engine/SCons/Node/PythonTests.py index 74a9c99..8b08c52 100644 --- a/src/engine/SCons/Node/PythonTests.py +++ b/src/engine/SCons/Node/PythonTests.py @@ -51,7 +51,7 @@ class ValueTestCase(unittest.TestCase): def test_build(self): """Test "building" a Value Node """ - class fake_executor: + class fake_executor(object): def __call__(self, node): node.write('faked') |
