Skip to content

Commit

Permalink
(tests.archives) 'Vpk' in test_Vpk_from_file is redundant
Browse files Browse the repository at this point in the history
  • Loading branch information
snake-biscuits committed Aug 28, 2024
1 parent e5d429d commit 9d3bdf8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/archives/respawn/test_Vpk.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@


@pytest.mark.parametrize("filename", vpks.values(), ids=vpks.keys())
def test_Vpk_from_file(filename: str):
def test_from_file(filename: str):
vpk = respawn.Vpk.from_file(filename)
assert isinstance(vpk.namelist(), list)
# TODO: try a read
2 changes: 1 addition & 1 deletion tests/archives/valve/test_Vpk.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@


@pytest.mark.parametrize("filename", vpks.values(), ids=vpks.keys())
def test_Vpk_from_file(filename: str):
def test_from_file(filename: str):
vpk = valve.Vpk.from_file(filename)
assert isinstance(vpk.namelist(), list)
# TODO: try a read

0 comments on commit 9d3bdf8

Please sign in to comment.