Skip to content

Commit 8beb813

Browse files
committed
Try to remove errors from postgres/mysql
They are failing trying to close a db handle that is not needed for this test. So open the db like all of the rest of the tests. It's ok that it's not used.
1 parent c607d84 commit 8beb813

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

test/db_test_base.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2985,6 +2985,8 @@ def init_ab(self):
29852985
def test_splitDesignator(self):
29862986
from roundup.hyperdb import splitDesignator, DesignatorError
29872987

2988+
self.open_database() # allow setup/shutdown to work to postgres/mysql
2989+
29882990
valid_test_cases = [('zip2py44', ('zip2py', '44')),
29892991
('zippy2', ('zippy', '2')),
29902992
('a9', ('a', '9')),

0 commit comments

Comments
 (0)