Skip to content

Commit

Permalink
fix other test
Browse files Browse the repository at this point in the history
  • Loading branch information
prestonvanloon committed Jul 28, 2020
1 parent a604ebc commit 6d7e0f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shared/prometheus/service_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ func TestHealthz(t *testing.T) {
rr = httptest.NewRecorder()
handler.ServeHTTP(rr, req)

if status := rr.Code; status != http.StatusOK {
if status := rr.Code; status != http.StatusServiceUnavailable {
t.Errorf("expected OK status but got %v", rr.Code)
}

Expand Down

0 comments on commit 6d7e0f6

Please sign in to comment.