Skip to content

Commit

Permalink
chore(datastore): integration test fix (#7004)
Browse files Browse the repository at this point in the history
* chore(datastore): integration test fix
  • Loading branch information
telpirion authored Nov 8, 2022
1 parent 9140fcc commit a144f15
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions datastore/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ import (
"flag"
"fmt"
"log"
"math"
"os"
"reflect"
"sort"
Expand Down Expand Up @@ -225,7 +224,7 @@ func TestIntegration_GetWithReadTime(t *testing.T) {
t.Fatalf("Transaction.Commit: %v\n", err)
}

testutil.Retry(t, 5, time.Duration(5*math.Pow(10, 9)), func(r *testutil.R) {
testutil.Retry(t, 5, time.Duration(10*time.Second), func(r *testutil.R) {
got := RT{}
tm := ReadTime(time.Now())

Expand Down

0 comments on commit a144f15

Please sign in to comment.