Skip to content

Commit 4b728ee

Browse files
committed
test: update architecutre mismatch error string
1 parent 6dd16d6 commit 4b728ee

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
@@ -149,7 +149,8 @@ def test_manifest_cross_arch_check(tmp_path, build_container):
149149
"manifest", "--target-arch=aarch64",
150150
f"localhost/{container_tag}"
151151
], check=True, capture_output=True, encoding="utf8")
152-
assert 'image found is for unexpected architecture "x86_64"' in exc.value.stderr
152+
assert 'cannot generate manifest: requested container architecture '\
153+
'does not match resolved container: "x86_64" !=' in exc.value.stderr
153154

154155

155156
def find_rootfs_type_from(manifest_str):

0 commit comments

Comments
 (0)