Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
AdityaPandeyCN committed Jul 11, 2024
1 parent bcf5b45 commit 8e8d696
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/swc/test_LoadSWC.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,9 @@ class TestSWCExport(unittest.TestCase):

def setUp(self):
"""Set up file paths for testing."""
self.input_file = "Case1_new.swc"
self.output_file = "Case1_exported.swc"
current_dir = os.path.dirname(os.path.abspath(__file__))
self.input_file = os.path.join(current_dir, "Case1_new.swc")
self.output_file = os.path.join(current_dir, "Case1_exported.swc")

def test_load_export_compare(self):
"""Test loading an SWC file, exporting it, and comparing the results."""
Expand Down

0 comments on commit 8e8d696

Please sign in to comment.