Skip to content

Commit

Permalink
save path tests from symlink confusion, fixes #231
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanov committed Nov 17, 2023
1 parent 6921356 commit 5f24503
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_paths.py
Expand Up @@ -297,7 +297,7 @@ def test_jupyter_path_user_site():
)
)
for p, v in zip(path, values):
assert p == v
assert realpath(p) == realpath(v)


def test_jupyter_path_no_user_site():
Expand Down Expand Up @@ -354,7 +354,7 @@ def test_jupyter_config_path():
)
)
for p, v in zip(path, values):
assert p == v
assert realpath(p) == realpath(v)


def test_jupyter_config_path_no_user_site():
Expand All @@ -379,7 +379,7 @@ def test_jupyter_config_path_prefer_env():
)
)
for p, v in zip(path, values):
assert p == v
assert realpath(p) == realpath(v)


def test_jupyter_config_path_env():
Expand Down

0 comments on commit 5f24503

Please sign in to comment.