Skip to content

Commit

Permalink
storage: extend wait timeout for execution
Browse files Browse the repository at this point in the history
Extend timeout to pass always in traivs.
  • Loading branch information
yichengq committed Oct 31, 2015
1 parent 2fe6893 commit 59b5dab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storage/kvstore_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -665,7 +665,7 @@ func TestTxnBlockBackendForceCommit(t *testing.T) {
s.TxnEnd(id)
select {
case <-done:
case <-time.After(100 * time.Millisecond):
case <-time.After(time.Second):
t.Fatalf("failed to execute ForceCommit")
}

Expand Down

0 comments on commit 59b5dab

Please sign in to comment.