summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/PathListTests.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/SCons/PathListTests.py')
-rw-r--r--src/engine/SCons/PathListTests.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/engine/SCons/PathListTests.py b/src/engine/SCons/PathListTests.py
index 31a9ec6..212c761 100644
--- a/src/engine/SCons/PathListTests.py
+++ b/src/engine/SCons/PathListTests.py
@@ -33,7 +33,7 @@ class subst_pathTestCase(unittest.TestCase):
def setUp(self):
- class FakeEnvironment:
+ class FakeEnvironment(object):
def __init__(self, **kw):
self.kw = kw
def subst(self, s, target=None, source=None, conv=lambda x: x):
@@ -55,7 +55,7 @@ class subst_pathTestCase(unittest.TestCase):
import SCons.Node
- class A:
+ class A(object):
pass
n = SCons.Node.Node()
@@ -70,7 +70,7 @@ class subst_pathTestCase(unittest.TestCase):
"""Test the subst_path() method on a non-Node object
"""
- class A:
+ class A(object):
def __str__(self):
return '<object A>'
@@ -86,7 +86,7 @@ class subst_pathTestCase(unittest.TestCase):
"""Test the subst_path() method on an object with a get() method
"""
- class B:
+ class B(object):
def get(self):
return 'b'