Skip to content

Commit bc6052f

Browse files
committed
Switch content 2.4 metadata upload test to use attrs package to avoid race condition with large sync test
(cherry picked from commit c7fa145)
1 parent 1704c59 commit bc6052f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pulp_python/tests/functional/api/test_crud_content_unit.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,9 +170,9 @@ def test_upload_requires_python(python_content_factory):
170170
@pytest.mark.parallel
171171
def test_upload_metadata_24_spec(python_content_factory):
172172
"""Test that packages using metadata spec 2.4 can be uploaded to pulp."""
173-
filename = "setuptools-80.9.0.tar.gz"
173+
filename = "attrs-26.1.0.tar.gz"
174174
with PyPISimple() as client:
175-
page = client.get_project_page("setuptools")
175+
page = client.get_project_page("attrs")
176176
for package in page.packages:
177177
if package.filename == filename:
178178
content = python_content_factory(filename, url=package.url)

0 commit comments

Comments
 (0)