Commit d6249bb9 authored by Tres Seaver's avatar Tres Seaver

Fix 'persistent.tests.test_timestamp.test_suite':

TypeError: TestCases and TestSuites must be instantiated before passing them to addTest()
parent 2a8313cc
...@@ -332,6 +332,6 @@ def test_suite(): ...@@ -332,6 +332,6 @@ def test_suite():
else: else:
if pyTimeStamp != TimeStamp: if pyTimeStamp != TimeStamp:
# We have both implementations available # We have both implementations available
suite.append(PyAndCComparisonTests) suite.append(unittest.makeSuite(PyAndCComparisonTests))
return unittest.TestSuite(suite) return unittest.TestSuite(suite)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment