diff --git a/test/e2e_node/remote/node_conformance.go b/test/e2e_node/remote/node_conformance.go index 8423a671d6e..eb09b22dea7 100644 --- a/test/e2e_node/remote/node_conformance.go +++ b/test/e2e_node/remote/node_conformance.go @@ -85,7 +85,7 @@ func buildConformanceTest(binDir string) error { commandToString(cmd), err, output) } // Save docker image into tar file. - cmd = exec.Command("docker", "save", getConformanceImageRepo(), "-o", filepath.Join(binDir, conformanceTarfile)) + cmd = exec.Command("docker", "save", "-o", filepath.Join(binDir, conformanceTarfile), getConformanceImageRepo()) if output, err := cmd.CombinedOutput(); err != nil { return fmt.Errorf("failed to save node conformance docker image into tar file: command - %q, error - %v, output - %q", commandToString(cmd), err, output)