diff --git a/test/attributes/check_visually.py b/test/attributes/check_visually.py
index 8c9af89bad284a2b71c838d1582b0ada60fc47d8..159b8e0e1ba8611ac36f0ea3031bc601c3b43424 100644
--- a/test/attributes/check_visually.py
+++ b/test/attributes/check_visually.py
@@ -6,7 +6,7 @@ from cremi_tools.viewer.volumina import view
 
 
 def check_region_mapping():
-    t = '../../data/tmp/tables/sbem-6dpf-1-whole-segmented-cells-labels/regions.csv'
+    t = '../../data/0.1.1/tables/sbem-6dpf-1-whole-segmented-cells-labels/regions.csv'
     table = pd.read_csv(t, sep='\t')
     label_ids = table['label_id'].values
     head_ids = table['head'].values
diff --git a/test/attributes/test_regions.py b/test/attributes/test_regions.py
index 7ac4378d6b06cf6b81456eb7e227447a0ce51ead..592d6af48db73c4884310f0371723430877270d7 100644
--- a/test/attributes/test_regions.py
+++ b/test/attributes/test_regions.py
@@ -15,7 +15,7 @@ sys.path.append('../..')
 class TestRegions(unittest.TestCase):
     tmp_folder = 'tmp'
 
-    def _tearDown(self):
+    def tearDown(self):
         try:
             rmtree(self.tmp_folder)
         except OSError: