Quellcode durchsuchen

Fixed error check using the wrong error value

errorOut was using the err from the previous test.
same as #7816 but on TestTopPrivileged, which I missed last time

Signed-off-by: Frank Rosquin <frank.rosquin@gmail.com>
Frank Rosquin vor 10 Jahren
Ursprung
Commit
d93c95a332
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      integration-cli/docker_cli_top_test.go

+ 1 - 1
integration-cli/docker_cli_top_test.go

@@ -52,7 +52,7 @@ func TestTopPrivileged(t *testing.T) {
 
 	topCmd = exec.Command(dockerBinary, "top", cleanedContainerID)
 	out2, _, err2 := runCommandWithOutput(topCmd)
-	errorOut(err, t, fmt.Sprintf("failed to run top: %v %v", out2, err2))
+	errorOut(err2, t, fmt.Sprintf("failed to run top: %v %v", out2, err2))
 
 	killCmd := exec.Command(dockerBinary, "kill", cleanedContainerID)
 	_, err = runCommand(killCmd)