From cf7b358d69e2aaf330fd4219d2b552a250365645 Mon Sep 17 00:00:00 2001
From: Robert Hensing <robert@roberthensing.nl>
Date: Thu, 8 Dec 2022 22:29:19 +0100
Subject: [PATCH] nixosTests.docker-tools: Fix syntax

This may be unnecessary, but I'm not waiting for the tests again.
---
 nixos/tests/docker-tools.nix | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/nixos/tests/docker-tools.nix b/nixos/tests/docker-tools.nix
index bf0a511da2f6..98704ecb2fb6 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")