summaryrefslogtreecommitdiff
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.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/engine/SCons/PathListTests.py b/src/engine/SCons/PathListTests.py
index 87ad0d9..141a4f5 100644
--- a/src/engine/SCons/PathListTests.py
+++ b/src/engine/SCons/PathListTests.py
@@ -21,7 +21,7 @@
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
-__revision__ = "src/engine/SCons/PathListTests.py 4720 2010/03/24 03:14:11 jars"
+__revision__ = "src/engine/SCons/PathListTests.py 5023 2010/06/14 22:05:46 scons"
import sys
import unittest
@@ -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'
@@ -159,7 +159,7 @@ if __name__ == "__main__":
]
for tclass in tclasses:
names = unittest.getTestCaseNames(tclass, 'test_')
- suite.addTests(map(tclass, names))
+ suite.addTests(list(map(tclass, names)))
if not unittest.TextTestRunner().run(suite).wasSuccessful():
sys.exit(1)