From 692a487fe956a0cef7f20eaf7f11fd9c5d28850c Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Wed, 8 Jan 2025 21:14:26 +0100 Subject: [PATCH] test: fix integration test --- test/test_container.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_container.py b/test/test_container.py index 8268534..f769c7b 100644 --- a/test/test_container.py +++ b/test/test_container.py @@ -18,7 +18,7 @@ def test_container_builds_image(tmp_path, build_container): "--distro", "centos-9" ]) arch = "x86_64" - assert (output_dir / f"fedora-41-minimal-raw-{arch}/xz/disk.raw.xz").exists() + assert (output_dir / f"centos-9-minimal-raw-{arch}/xz/disk.raw.xz").exists() # XXX: ensure no other leftover dirs dents = os.listdir(output_dir) assert len(dents) == 1, f"too many dentries in output dir: {dents}"