summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/Node/PythonTests.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2010-05-12 05:21:33 (GMT)
committerSteven Knight <knight@baldmt.com>2010-05-12 05:21:33 (GMT)
commit53fc08f1c8d9d4d0174247cb34b770342fd25068 (patch)
treedb3ece8a678daf4f6d004096a05ddaaab94aa3a7 /src/engine/SCons/Node/PythonTests.py
parentc94aad42405270dcfe9225d49fbf2aa2cae0b50d (diff)
downloadSCons-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.py2
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')