Skip to content

Commit

Permalink
Fix new delocating test
Browse files Browse the repository at this point in the history
  • Loading branch information
dunkmann00 committed Apr 29, 2024
1 parent 10949cb commit 80b0d8b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion delocate/tests/test_delocating.py
Original file line number Diff line number Diff line change
Expand Up @@ -724,7 +724,9 @@ def test_get_archs_and_version_from_wheel_name() -> None:
}
assert _get_archs_and_version_from_wheel_name(
"foo-1.0-py310-abi3-macosx_10_9_x86_64.macosx_11_0_arm64.whl"
)
) == {
"universal2": Version("10.9"),
}
with pytest.raises(InvalidWheelFilename, match="Invalid wheel filename"):
_get_archs_and_version_from_wheel_name("foo.whl")

Expand Down

0 comments on commit 80b0d8b

Please sign in to comment.