We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfc941b commit 9f931caCopy full SHA for 9f931ca
test/table_test.go
@@ -55,7 +55,7 @@ func (s *stats) check(t *testing.T) {
55
t.Fatalf("min > in_flight (%d > %d)", s.min, s.inFlight)
56
}
57
if s.inFlight > s.balance {
58
- t.Fatalf("in_flight > max (%d > %d)", s.inFlight, s.max)
+ t.Fatalf("in_flight > balance (%d > %d)", s.inFlight, s.balance)
59
60
if s.balance > s.max {
61
t.Fatalf("balance > max (%d > %d)", s.balance, s.max)
0 commit comments