Skip to content

Commit 4d4a914

Browse files
mdellwegpulpbot
authored andcommitted
Fix twine test on lower bound pulpcore version
1 parent f839954 commit 4d4a914

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pulp_python/tests/functional/api/test_pypi_apis.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ def test_package_upload_simple(self):
192192

193193
@pytest.mark.parallel
194194
def test_twine_upload(
195-
pulpcore_bindings,
195+
tasks_api_client,
196196
python_content_summary,
197197
python_empty_repo_distro,
198198
python_package_dist_directory,
@@ -218,7 +218,7 @@ def test_twine_upload(
218218
capture_output=True,
219219
check=True,
220220
)
221-
tasks = pulpcore_bindings.TasksApi.list(reserved_resources=repo.pulp_href).results
221+
tasks = tasks_api_client.list(reserved_resources=repo.pulp_href).results
222222
for task in reversed(tasks):
223223
t = monitor_task(task.pulp_href)
224224
repo_ver_href = t.created_resources[-1]

0 commit comments

Comments
 (0)