Skip to content

Commit a86e362

Browse files
committed
Remove r prefix, shorten long line with a link
1 parent f1ad919 commit a86e362

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

py_src/jupyter_lsp/tests/test_paths.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ def test_file_uri_to_path_posix(file_uri, expected_posix_path): # pragma: no co
6262
@pytest.mark.parametrize(
6363
"file_uri, expected_windows_path",
6464
[
65-
# see https://github.com/krassowski/jupyterlab-lsp/pull/305#issuecomment-665996145
66-
["file:///C:/Windows/System32/Drivers/etc", r"C:/Windows/System32/Drivers/etc"],
67-
["file:///C:/some%20dir/some%20file.txt", r"C:/some dir/some file.txt"],
65+
# https://github.com/krassowski/jupyterlab-lsp/pull/305#issuecomment-665996145
66+
["file:///C:/Windows/System32/Drivers/etc", "C:/Windows/System32/Drivers/etc"],
67+
["file:///C:/some%20dir/some%20file.txt", "C:/some dir/some file.txt"],
6868
],
6969
)
7070
def test_file_uri_to_path_windows(file_uri, expected_windows_path): # pragma: no cover

0 commit comments

Comments
 (0)