Skip to content

Commit

Permalink
Fix Linux path
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoesters committed May 16, 2024
1 parent e7b3cfd commit d2ab895
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ def test_vars_in_working_dir(tmp_path, delete_files):
elif PLATFORM == "osx":
expected_directory = Path(os.environ["TMPDIR"], "working_dir_test")
else:
expected_directory = Path(os.environ["TMP"], "working_dir_test")
expected_directory = Path("/tmp/working_dir_test")
delete_files.append(expected_directory)
datafile = str(DATA / "jsons" / "sys-prefix.json")
try:
Expand Down

0 comments on commit d2ab895

Please sign in to comment.