Skip to content

Commit

Permalink
roachtest: fix queue failure message
Browse files Browse the repository at this point in the history
It was using a global variable instead of the one it wanted.

Touches #28372.

Release note: None
  • Loading branch information
tbg committed Aug 14, 2018
1 parent 97d734c commit b77784b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cmd/roachtest/queue.go
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ func runQueue(ctx context.Context, t *test, c *cluster) {
maxRows *= dbNodeCount * 64
}
if queueCount > maxRows {
t.Fatalf("resulting table had %d entries, expected %d or fewer", count, maxRows)
t.Fatalf("resulting table had %d entries, expected %d or fewer", queueCount, maxRows)
}

// Sample the scan time after the primary workload. We expect this to be
Expand Down

0 comments on commit b77784b

Please sign in to comment.