diff --git a/nixos/tests/docker-tools.nix b/nixos/tests/docker-tools.nix index bf0a511da2f..98704ecb2fb 100644 --- a/nixos/tests/docker-tools.nix +++ b/nixos/tests/docker-tools.nix @@ -420,18 +420,18 @@ import ./make-test-python.nix ({ pkgs, ... }: { ) with subtest("Ensure correct architecture is present in manifests."): - docker.succeed( - "docker load --input='${examples.build-image-with-architecture}'", - "docker inspect build-image-with-architecture " - + "| ${pkgs.jq}/bin/jq -er '.[] | select(.Architecture=="arm64").Architecture'", - "docker rmi build-image-with-architecture", - ) - docker.succeed( - "${examples.layered-image-with-architecture} | docker load", - "docker inspect layered-image-with-architecture " - + "| ${pkgs.jq}/bin/jq -er '.[] | select(.Architecture=="arm64").Architecture'", - "docker rmi layered-image-with-architecture", - ) + docker.succeed(""" + docker load --input='${examples.build-image-with-architecture}' + docker inspect build-image-with-architecture \ + | ${pkgs.jq}/bin/jq -er '.[] | select(.Architecture=="arm64").Architecture' + docker rmi build-image-with-architecture + """) + docker.succeed(""" + ${examples.layered-image-with-architecture} | docker load + docker inspect layered-image-with-architecture \ + | ${pkgs.jq}/bin/jq -er '.[] | select(.Architecture=="arm64").Architecture' + docker rmi layered-image-with-architecture + """) with subtest("etc"): docker.succeed("${examples.etc} | docker load")