Skip to content

Commit 75782d2

Browse files
committed
test: update architecutre mismatch error string
1 parent 872a708 commit 75782d2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/test_manifest.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,8 @@ def test_manifest_cross_arch_check(tmp_path, build_container):
151151
"manifest", "--target-arch=aarch64",
152152
f"localhost/{container_tag}"
153153
], check=True, capture_output=True, encoding="utf8")
154-
assert 'image found is for unexpected architecture "x86_64"' in exc.value.stderr
154+
assert 'cannot generate manifest: requested container architecture '\
155+
'does not match resolved container: "x86_64" !=' in exc.value.stderr
155156

156157

157158
def find_rootfs_type_from(manifest_str):

0 commit comments

Comments
 (0)