Commit 09f8dcd7 authored by Tres Seaver's avatar Tres Seaver

Backport tidying from trunk @ r106806.

parent 144f11c0
#!/usr/bin/env python
############################################################################## ##############################################################################
# #
# Copyright (c) 2004-2009 Zope Corporation and Contributors. # Copyright (c) 2004-2009 Zope Corporation and Contributors.
...@@ -12,10 +11,9 @@ ...@@ -12,10 +11,9 @@
# FOR A PARTICULAR PURPOSE. # FOR A PARTICULAR PURPOSE.
# #
############################################################################## ##############################################################################
import unittest import unittest
import os import os
import ZODB.tests.util import ZODB.tests.util # layer used at class scope
_NOISY = os.environ.get('NOISY_REPOZO_TEST_OUTPUT') _NOISY = os.environ.get('NOISY_REPOZO_TEST_OUTPUT')
...@@ -172,10 +170,6 @@ class RepozoTests(unittest.TestCase): ...@@ -172,10 +170,6 @@ class RepozoTests(unittest.TestCase):
def test_suite(): def test_suite():
suite = unittest.TestSuite() return unittest.TestSuite([
suite.addTest(unittest.makeSuite(RepozoTests)) unittest.makeSuite(RepozoTests),
return suite ])
if __name__ == '__main__':
unittest.main(defaultTest='test_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