From 82c536aacd30baf110c074de1f83ae3ab2f9588c Mon Sep 17 00:00:00 2001 From: Frank Rosquin Date: Sun, 31 Aug 2014 15:40:23 +0200 Subject: [PATCH] fixed error check using the wrong error value errorOut was using the err from the previous test. Signed-off-by: Frank Rosquin --- integration-cli/docker_cli_top_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-cli/docker_cli_top_test.go b/integration-cli/docker_cli_top_test.go index 6535473430..01a7cdfcc8 100644 --- a/integration-cli/docker_cli_top_test.go +++ b/integration-cli/docker_cli_top_test.go @@ -20,7 +20,7 @@ func TestTopNonPrivileged(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)