Skip to content

Commit 79c7fee

Browse files
committed
Fix tests.
1 parent 53d520c commit 79c7fee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_console.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def task_func(): ...
3737
("edtior_url_scheme", "expected"),
3838
[
3939
("no_link", ""),
40-
("file", "link file:///{path}"),
40+
("file", "link file://{path}"),
4141
("vscode", f"link vscode://file/{{path}}:{_SOURCE_LINE_TASK_FUNC}"),
4242
("pycharm", f"link pycharm://open?file={{path}}&line={_SOURCE_LINE_TASK_FUNC}"),
4343
(
@@ -56,7 +56,7 @@ def test_create_url_style_for_task(edtior_url_scheme, expected):
5656
("edtior_url_scheme", "expected"),
5757
[
5858
("no_link", ""),
59-
("file", "link file:///{path}"),
59+
("file", "link file://{path}"),
6060
("vscode", "link vscode://file/{path}:1"),
6161
("pycharm", "link pycharm://open?file={path}&line=1"),
6262
(

0 commit comments

Comments
 (0)