Skip to content

Commit 6c3b144

Browse files
committed
Fix fixture usage in test_flatpak
1 parent 9a8e6f1 commit 6c3b144

1 file changed

Lines changed: 2 additions & 7 deletions

File tree

pulp_container/tests/functional/api/test_flatpak.py

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -66,21 +66,16 @@ def test_flatpak_install(
6666
container_manifest_api,
6767
pulp_settings,
6868
bindings_cfg,
69-
full_path,
7069
):
7170
if not pulp_settings.FLATPAK_INDEX:
7271
pytest.skip("This test requires FLATPAK_INDEX to be enabled")
7372

7473
image_path1 = f"{REGISTRY_V2}/pulp/oci-net.fishsoup.busyboxplatform:latest"
7574
registry_client.pull(image_path1)
76-
local_registry.tag_and_push(
77-
image_path1, full_path("pulptest/oci-net.fishsoup.busyboxplatform") + ":latest"
78-
)
75+
local_registry.tag_and_push(image_path1, "pulptest/oci-net.fishsoup.busyboxplatform:latest")
7976
image_path2 = f"{REGISTRY_V2}/pulp/oci-net.fishsoup.hello:latest"
8077
registry_client.pull(image_path2)
81-
local_registry.tag_and_push(
82-
image_path2, full_path("pulptest/oci-net.fishsoup.hello") + ":latest"
83-
)
78+
local_registry.tag_and_push(image_path2, "pulptest/oci-net.fishsoup.hello:latest")
8479
namespace = container_namespace_api.list(name="pulptest").results[0]
8580
add_to_cleanup(container_namespace_api, namespace.pulp_href)
8681

0 commit comments

Comments
 (0)