Commit 2dc88797 authored by Barry Warsaw's avatar Barry Warsaw

_close(): Override from base class so that the storage alone is closed

(there's no DB object since we're poking at things at a lower level).
parent db6d6783
...@@ -30,6 +30,9 @@ class StorageAPI(test_create.BaseFramework): ...@@ -30,6 +30,9 @@ class StorageAPI(test_create.BaseFramework):
raise raise
self._transaction = Transaction() self._transaction = Transaction()
def _close(self):
self._storage.close()
def checkBasics(self): def checkBasics(self):
self._storage.tpc_begin(self._transaction) self._storage.tpc_begin(self._transaction)
# This should simply return # This should simply return
......
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