Skip to content

Commit

Permalink
Fix test.
Browse files Browse the repository at this point in the history
  • Loading branch information
jsirois committed Sep 12, 2024
1 parent d638a95 commit 7301379
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ def test_can_add_handles_optional_build_tag_in_wheel(
def test_can_add_handles_invalid_wheel_filename(cpython_38_environment):
# type: (PEXEnvironment) -> None
dist = create_dist("pep427-invalid.whl")
assert _InvalidWheelName(dist, "pep427-invalid") == cpython_38_environment._can_add(dist)
assert _InvalidWheelName(dist, "pep427-invalid.whl") == cpython_38_environment._can_add(dist)


@pytest.fixture
Expand Down

0 comments on commit 7301379

Please sign in to comment.