Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pulp_python/tests/functional/api/test_crud_content_unit.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,9 +173,9 @@ def test_upload_requires_python(python_content_factory):
@pytest.mark.parallel
def test_upload_metadata_24_spec(python_content_factory):
"""Test that packages using metadata spec 2.4 can be uploaded to pulp."""
filename = "setuptools-80.9.0.tar.gz"
filename = "attrs-26.1.0.tar.gz"
with PyPISimple() as client:
page = client.get_project_page("setuptools")
page = client.get_project_page("attrs")
for package in page.packages:
if package.filename == filename:
content = python_content_factory(filename, url=package.url)
Expand Down