Skip to content

Commit

Permalink
Errorf and not Fatalf
Browse files Browse the repository at this point in the history
Fixes #612
  • Loading branch information
arp242 committed Oct 24, 2022
1 parent 8868e93 commit a3f244a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/goatcounter/buffer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ func TestBuffer(t *testing.T) {
}

if ii < 5 {
t.Fatalf("sent while down; ii: %d; URL: %s", ii, r.URL)
t.Errorf("sent while down; ii: %d; URL: %s", ii, r.URL)
w.WriteHeader(500)
return
}
Expand Down

0 comments on commit a3f244a

Please sign in to comment.