diff options
Diffstat (limited to 'Lib/test/test_softspace.py')
-rw-r--r-- | Lib/test/test_softspace.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_softspace.py b/Lib/test/test_softspace.py index aaf6f0f544..719a035c45 100644 --- a/Lib/test/test_softspace.py +++ b/Lib/test/test_softspace.py @@ -15,9 +15,9 @@ class SoftspaceTests(unittest.TestCase): print >> f, 'f', 'g' # In 2.2 & earlier, this printed ' a\nbc d\te\nf g\n' self.assertEqual(f.getvalue(), 'a\nb c d\te\nf g\n') - + def test_main(): run_unittest(SoftspaceTests) - + if __name__ == '__main__': test_main() |