Merge pull request #5023 from justinsb/fix_typo_in_test

Fix typo in test
This commit is contained in:
Eric Tune
2015-03-04 08:12:08 -08:00

View File

@@ -484,7 +484,7 @@ func TestHealthCheck(t *testing.T) {
} }
defer resp.Body.Close() defer resp.Body.Close()
if resp.StatusCode != http.StatusInternalServerError { if resp.StatusCode != http.StatusInternalServerError {
t.Errorf("expected status code %d, got %d", http.StatusOK, resp.StatusCode) t.Errorf("expected status code %d, got %d", http.StatusInternalServerError, resp.StatusCode)
} }
//Test with old docker version //Test with old docker version