Skip to content

Commit ce623f7

Browse files
authored
As pip has to use == rather than =
1 parent 2ffa5c7 commit ce623f7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/integrity.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,8 @@ def test_changelog_versions(pkg, version):
184184
@pytest.mark.parametrize(
185185
"pkg,sep,version,expected",
186186
[
187-
[PY_NAME, "=", PY_VERSION, 3],
187+
[PY_NAME, "=", PY_VERSION, 2],
188+
[PY_NAME, "==", PY_VERSION, 1],
188189
[PY_NAME + "-python", "=", PY_VERSION, 1],
189190
[JS_LSP_NAME, "@", JS_LSP_VERSION, 4]
190191
],

0 commit comments

Comments
 (0)