Skip to content

Commit 35b8e9c

Browse files
Fix DeprecationWarning from pytest-console-scripts (#1281)
1 parent 09c15ce commit 35b8e9c

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

tests/extension/test_entrypoint.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@
66

77
def test_server_extension_list(jp_environ, script_runner):
88
ret = script_runner.run(
9-
"jupyter",
10-
"server",
11-
"extension",
12-
"list",
9+
[
10+
"jupyter",
11+
"server",
12+
"extension",
13+
"list",
14+
]
1315
)
1416
assert ret.success

0 commit comments

Comments
 (0)