1
0
mirror of https://blitiri.com.ar/repos/chasquid synced 2025-12-18 14:47:03 +00:00

courier: Don't call testing.T.Fatalf from a goroutine

Calling testing.T.Fatalf from a new goroutine is not supported; since
this should be quite exceptional, we just panic instead.
This commit is contained in:
Alberto Bertogli
2020-04-13 13:59:36 +01:00
parent 15b79d9de9
commit 0fd3941cf0

View File

@@ -55,7 +55,7 @@ func fakeServer(t *testing.T, responses map[string]string) (string, *sync.WaitGr
c, err := l.Accept()
if err != nil {
t.Fatalf("fake server accept: %v", err)
panic(err)
}
defer c.Close()