Skip to content

Commit a3d54de

Browse files
Cleanup how test fails.
1 parent f21aa04 commit a3d54de

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tests/test_external.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,17 @@
88
import datajoint as dj
99
from .schema_external import stores_config
1010
from .schema_external import SimpleRemote
11+
current_location = dj.config['stores']['share']['location']
1112

1213

1314
def setUp(self):
1415
dj.config['stores'] = stores_config
1516

1617

18+
def tearDown(self):
19+
dj.config['stores']['share']['location'] = current_location
20+
21+
1722
def test_external_put():
1823
"""
1924
external storage put and get and remove

0 commit comments

Comments
 (0)