diff options
author | drebs <drebs@leap.se> | 2013-01-31 14:18:09 -0200 |
---|---|---|
committer | drebs <drebs@leap.se> | 2013-01-31 15:51:14 -0200 |
commit | 02944dc6a5cc1a86273d8737196338224be276d7 (patch) | |
tree | 9a665c95149fb60dc776e4b1fb38508072953f7a /tests | |
parent | b25360e22173a56e468b0285bae616491a1b67ca (diff) |
Add ability to close Soledad instance.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/__init__.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/__init__.py b/tests/__init__.py index 890c4d2a..3bb66680 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -28,7 +28,9 @@ class BaseSoledadTest(BaseLeapTest): self._soledad._gpg.import_keys(PRIVATE_KEY) def tearDown(self): - pass + self._db1.close() + self._db2.close() + self._soledad.close() # Key material for testing |