Skip to content

Commit 7380b62

Browse files
author
Joseph G. Shuttleworth
committed
Fix test output folders
1 parent cfabef3 commit 7380b62

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/test_infer_reversal.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def setUp(self):
1313
"staircaseramp (2)_2kHz_15.01.07")
1414
json_file = "staircaseramp (2)_2kHz_15.01.07.json"
1515

16-
self.output_dir = os.path.join('test_output', 'test_trace_class')
16+
self.output_dir = os.path.join('test_output', self.__class__.__name__)
1717

1818
if not os.path.exists(self.output_dir):
1919
os.makedirs(self.output_dir)

tests/test_leak_correct.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def setUp(self):
1313
"staircaseramp (2)_2kHz_15.01.07")
1414
json_file = "staircaseramp (2)_2kHz_15.01.07.json"
1515

16-
self.output_dir = os.path.join('test_output', 'test_trace_class')
16+
self.output_dir = os.path.join('test_output', self.__class__.__name__)
1717

1818
if not os.path.exists(self.output_dir):
1919
os.makedirs(self.output_dir)

0 commit comments

Comments
 (0)