Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions tests/test_paths.py
Original file line number Diff line number Diff line change
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