Minor fix

This commit is contained in:
Ken Hibino
2021-03-05 14:28:22 -08:00
parent 5d1ec70544
commit aa936466b3
2 changed files with 2 additions and 2 deletions

View File

@@ -70,7 +70,7 @@ func TestServerRun(t *testing.T) {
go func() {
select {
case <-time.After(10 * time.Second):
t.Fatal("server did not stop after receiving TERM signal")
panic("server did not stop after receiving TERM signal")
case <-done:
}
}()