Skip to content

Commit 9f931ca

Browse files
committed
fix test
1 parent cfc941b commit 9f931ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/table_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ func (s *stats) check(t *testing.T) {
5555
t.Fatalf("min > in_flight (%d > %d)", s.min, s.inFlight)
5656
}
5757
if s.inFlight > s.balance {
58-
t.Fatalf("in_flight > max (%d > %d)", s.inFlight, s.max)
58+
t.Fatalf("in_flight > balance (%d > %d)", s.inFlight, s.balance)
5959
}
6060
if s.balance > s.max {
6161
t.Fatalf("balance > max (%d > %d)", s.balance, s.max)

0 commit comments

Comments
 (0)