Skip to content

Commit

Permalink
chore: fix test names
Browse files Browse the repository at this point in the history
  • Loading branch information
nejch committed Oct 12, 2023
1 parent 61e0fae commit f1654b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/functional/api/test_packages.py
Expand Up @@ -38,7 +38,7 @@ def test_upload_generic_package(tmp_path, project):
assert package.message == "201 Created"


def test_download_generic_package_bytes(tmp_path, project):
def test_upload_generic_package_as_bytes(tmp_path, project):
path = tmp_path / file_name

path.write_text(file_content)
Expand All @@ -54,7 +54,7 @@ def test_download_generic_package_bytes(tmp_path, project):
assert package.message == "201 Created"


def test_download_generic_package_file(tmp_path, project):
def test_upload_generic_package_as_file(tmp_path, project):
path = tmp_path / file_name

path.write_text(file_content)
Expand Down

0 comments on commit f1654b8

Please sign in to comment.