Skip to content

Commit ec15542

Browse files
authored
Fix linter test
1 parent 331278a commit ec15542

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

scripts/integrity.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,11 @@ def test_changelog_versions(pkg, version):
183183

184184
@pytest.mark.parametrize(
185185
"pkg,sep,version,expected",
186-
[[PY_NAME, "=", PY_VERSION, 3], [JS_LSP_NAME, "@", JS_LSP_VERSION, 3]],
186+
[
187+
[PY_NAME, "=", PY_VERSION, 3],
188+
[PY_NAME + "-python", "=", PY_VERSION, 1],
189+
[JS_LSP_NAME, "@", JS_LSP_VERSION, 4]
190+
],
187191
)
188192
def test_installation_versions(the_installation_notebook, pkg, sep, version, expected):
189193
assert the_installation_notebook.count(f"{pkg}{sep}{version}") == expected

0 commit comments

Comments
 (0)