Skip to content

Commit

Permalink
Updated invalid while error msg in wheel test
Browse files Browse the repository at this point in the history
  • Loading branch information
deveshks committed Apr 21, 2020
1 parent 6f17a65 commit ac83d45
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_wheel.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ def test_read_invalid_wheel_extension():

file_name = os.path.join(os.path.dirname(__file__), "fixtures/twine-1.5.0.tar.gz")
with pytest.raises(
exceptions.InvalidDistribution, match=f"Not a known archive format: {file_name}"
exceptions.InvalidDistribution,
match=f"Not a known archive format for file: {file_name}",
):
wheel.Wheel(file_name)

Expand Down

0 comments on commit ac83d45

Please sign in to comment.