mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-09 23:24:05 -08:00
use Fatalf instead of panic
This commit is contained in:
parent
61d793cb1f
commit
0e58cda1fe
|
@ -15,7 +15,6 @@ package web
|
|||
|
||||
import (
|
||||
"context"
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
"net/http"
|
||||
"net/http/httptest"
|
||||
|
@ -111,7 +110,7 @@ func TestReadyAndHealthy(t *testing.T) {
|
|||
go func() {
|
||||
err := webHandler.Run(context.Background())
|
||||
if err != nil {
|
||||
panic(fmt.Sprintf("Can't start web handler:%s", err))
|
||||
t.Fatalf("Can't start web handler:%s", err)
|
||||
}
|
||||
}()
|
||||
|
||||
|
@ -207,7 +206,7 @@ func TestRoutePrefix(t *testing.T) {
|
|||
go func() {
|
||||
err := webHandler.Run(context.Background())
|
||||
if err != nil {
|
||||
panic(fmt.Sprintf("Can't start web handler:%s", err))
|
||||
t.Fatalf("Can't start web handler:%s", err)
|
||||
}
|
||||
}()
|
||||
|
||||
|
|
Loading…
Reference in a new issue