Skip to content

Commit

Permalink
bigtable/bttest: Allow more time for concurrent mod test.
Browse files Browse the repository at this point in the history
Change-Id: I6fd9c2fd23861f78bb161b6e2749b69fe1abfaa8
Reviewed-on: https://code-review.googlesource.com/8450
Reviewed-by: Jonathan Amsterdam <jba@google.com>
  • Loading branch information
garye committed Oct 13, 2016
1 parent b9d51d5 commit 07f82cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bigtable/bttest/inmem_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,8 @@ func TestConcurrentMutationsReadModifyAndGC(t *testing.T) {
}()
select {
case <-done:
case <-time.After(100 * time.Millisecond):
t.Error("Concurrent mutations and GCs haven't completed after 100ms")
case <-time.After(1 * time.Second):
t.Error("Concurrent mutations and GCs haven't completed after 1s")
}
}

Expand Down

0 comments on commit 07f82cd

Please sign in to comment.