mirror of https://github.com/jackc/pgx.git
Do not call t.Fatal in goroutine
require.Equal internally calls t.Fatal, which is not safe to call in a goroutine.pull/1762/head
parent
0f0d236599
commit
7fc908a5f2
|
@ -399,13 +399,22 @@ func TestConnConcurrency(t *testing.T) {
|
|||
errChan <- fmt.Errorf("select failed: %d %w", idx, err)
|
||||
return
|
||||
}
|
||||
require.Equal(t, idx, id)
|
||||
require.Equal(t, strconv.Itoa(idx), str)
|
||||
if id != idx {
|
||||
errChan <- fmt.Errorf("id mismatch: %d %d", idx, id)
|
||||
return
|
||||
}
|
||||
if str != strconv.Itoa(idx) {
|
||||
errChan <- fmt.Errorf("str mismatch: %d %s", idx, str)
|
||||
return
|
||||
}
|
||||
expectedDuration := pgtype.Interval{
|
||||
Microseconds: int64(idx) * time.Second.Microseconds(),
|
||||
Valid: true,
|
||||
}
|
||||
require.Equal(t, expectedDuration, duration)
|
||||
if duration != expectedDuration {
|
||||
errChan <- fmt.Errorf("duration mismatch: %d %v", idx, duration)
|
||||
return
|
||||
}
|
||||
|
||||
errChan <- nil
|
||||
}(i)
|
||||
|
|
Loading…
Reference in New Issue