Skip to content

Commit 1f9e462

Browse files
author
Richard Jones
committed
oops
1 parent b27aeda commit 1f9e462

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

test/test_db.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717
#
18-
# $Id: test_db.py,v 1.63.2.2 2003-03-18 00:43:29 richard Exp $
18+
# $Id: test_db.py,v 1.63.2.3 2003-03-18 00:43:48 richard Exp $
1919

2020
import unittest, os, shutil, time
2121

@@ -818,8 +818,8 @@ def setUp(self):
818818

819819
def suite():
820820
l = [
821-
# unittest.makeSuite(anydbmDBTestCase, 'test'),
822-
# unittest.makeSuite(anydbmReadOnlyDBTestCase, 'test')
821+
unittest.makeSuite(anydbmDBTestCase, 'test'),
822+
unittest.makeSuite(anydbmReadOnlyDBTestCase, 'test')
823823
]
824824
# return unittest.TestSuite(l)
825825

@@ -828,7 +828,6 @@ def suite():
828828
if hasattr(backends, 'bsddb3'):
829829
l.append(unittest.makeSuite(bsddb3DBTestCase, 'test'))
830830
l.append(unittest.makeSuite(bsddb3ReadOnlyDBTestCase, 'test'))
831-
return unittest.TestSuite(l)
832831

833832
if hasattr(backends, 'gadfly'):
834833
l.append(unittest.makeSuite(gadflyDBTestCase, 'test'))

0 commit comments

Comments
 (0)