diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2007-08-10 08:36:56 +0000 |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2007-08-10 08:36:56 +0000 |
commit | cccc58d993a885aea726c55990b587d57ca1ed2d (patch) | |
tree | 818764316ff3ae7c8cda5d1325a29eeaec618082 /Lib/test/test_bsddb3.py | |
parent | 9b01862d32840abc6479427e1b4ad86f2df46bbb (diff) | |
download | cpython-git-cccc58d993a885aea726c55990b587d57ca1ed2d.tar.gz |
Fix dbshelve and much of dbtables.
Diffstat (limited to 'Lib/test/test_bsddb3.py')
-rw-r--r-- | Lib/test/test_bsddb3.py | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/Lib/test/test_bsddb3.py b/Lib/test/test_bsddb3.py index 7c3d133cd4..39d8cc700a 100644 --- a/Lib/test/test_bsddb3.py +++ b/Lib/test/test_bsddb3.py @@ -31,22 +31,22 @@ def suite(): unlink(f) test_modules = [ - #'test_associate', - #'test_basics', - #'test_compat', - #'test_dbobj', + 'test_associate', + 'test_basics', + 'test_compat', + 'test_dbobj', 'test_dbshelve', - #'test_dbtables', - #'test_env_close', - #'test_get_none', - #'test_join', - #'test_lock', - #'test_misc', - #'test_queue', - #'test_recno', - #'test_thread', - #'test_sequence', - #'test_cursor_pget_bug', + 'test_dbtables', + 'test_env_close', + 'test_get_none', + 'test_join', + 'test_lock', + 'test_misc', + 'test_queue', + 'test_recno', + 'test_thread', + 'test_sequence', + 'test_cursor_pget_bug', ] alltests = unittest.TestSuite() |