Skip to content

Commit

Permalink
convert to pathlib.Path instead
Browse files Browse the repository at this point in the history
  • Loading branch information
sroet committed Aug 29, 2024
1 parent ad52e90 commit 8b31681
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_tmjob.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
ANGLE_ID = 100
ANGULAR_SEARCH = "38.53"
TEMP_DIR = TemporaryDirectory()
TEST_DATA_DIR = TEMP_DIR.name
TEST_DATA_DIR = pathlib.Path(TEMP_DIR.name)
TEST_TOMOGRAM = TEST_DATA_DIR.joinpath("tomogram.mrc")
TEST_BROKEN_TOMOGRAM_MASK = TEST_DATA_DIR.joinpath("broken_tomogram_mask.mrc")
TEST_WRONG_SIZE_TOMO_MASK = TEST_DATA_DIR.joinpath("wrong_size_tomogram_mask.mrc")
Expand Down

0 comments on commit 8b31681

Please sign in to comment.