summaryrefslogtreecommitdiff
path: root/test/test_seq.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_seq.py')
-rw-r--r--test/test_seq.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_seq.py b/test/test_seq.py
index 585a1062..a1411649 100644
--- a/test/test_seq.py
+++ b/test/test_seq.py
@@ -22,7 +22,6 @@ s = """\
"""
-
class SeqTestCase(unittest.TestCase):
backend = 'default'
path = 'store'
@@ -43,9 +42,10 @@ class SeqTestCase(unittest.TestCase):
# just make sure we can serialize
self.store.serialize()
+
def test_suite():
return unittest.makeSuite(SeqTestCase)
+
if __name__ == '__main__':
unittest.main(defaultTest='test_suite')
-