Skip to content

Commit

Permalink
Address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
coryan committed Jun 3, 2021
1 parent 8bd3716 commit 027d9e5
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions bigtable/bttest/inmem_test.go
Expand Up @@ -334,8 +334,13 @@ func TestTableRowsConcurrent(t *testing.T) {
}
finished <- true
}()
<-finished
<-finished
for i := 0; i < 2; i++ {
select {
case <-finished:
case <-time.After(2 * time.Second):
t.Fatalf("Timeout waiting for task %d\n", i)
}
}
}

func TestDropRowRange(t *testing.T) {
Expand Down

0 comments on commit 027d9e5

Please sign in to comment.