summaryrefslogtreecommitdiff
path: root/src/engine/SCons/Node/AliasTests.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/SCons/Node/AliasTests.py')
-rw-r--r--src/engine/SCons/Node/AliasTests.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/engine/SCons/Node/AliasTests.py b/src/engine/SCons/Node/AliasTests.py
index e7a16b3..56a5564 100644
--- a/src/engine/SCons/Node/AliasTests.py
+++ b/src/engine/SCons/Node/AliasTests.py
@@ -21,7 +21,7 @@
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
-__revision__ = "src/engine/SCons/Node/AliasTests.py 4720 2010/03/24 03:14:11 jars"
+__revision__ = "src/engine/SCons/Node/AliasTests.py 5023 2010/06/14 22:05:46 scons"
import sys
import unittest
@@ -51,7 +51,7 @@ class AliasTestCase(unittest.TestCase):
def test_get_contents(self):
"""Test the get_contents() method
"""
- class DummyNode:
+ class DummyNode(object):
def __init__(self, contents):
self.contents = contents
def get_csig(self):
@@ -119,7 +119,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)