Skip to content

Commit be5cca6

Browse files
authored
ci(bigquery/v2): fix race condition on query cancel test (googleapis#12963)
Fixes googleapis#12962
1 parent a3c0aca commit be5cca6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bigquery/v2/query/query_integration_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ func TestIntegration_QueryCancelWait(t *testing.T) {
9494
}
9595

9696
go func(t *testing.T) {
97-
err = q.Wait(ctx)
97+
err := q.Wait(ctx)
9898
if err == nil {
9999
t.Errorf("Wait() should throw an error: %v", err)
100100
}

0 commit comments

Comments
 (0)