@@ -36,7 +36,7 @@ func TestMain(m *testing.M) {
3636func TestFDB (t * testing.T ) {
3737 n := 4
3838 sameKeyN := 3
39- f := NewFdbStructured (connectionString , "dir1" )
39+ f := NewFdbStructured (connectionString ,, "dir1" )
4040 ctx , cancelCtx := context .WithTimeout (context .Background (), time .Duration (60 )* time .Second )
4141 err := f .Start (ctx )
4242 require .NoError (t , err )
@@ -45,7 +45,7 @@ func TestFDB(t *testing.T) {
4545
4646 forceRetryTransaction = func (i int ) bool { return i < 2 }
4747
48- f = NewFdbStructured (connectionString , "dir2" )
48+ f = NewFdbStructured (connectionString ,, "dir2" )
4949 ctx , cancelCtx = context .WithTimeout (context .Background (), time .Duration (60 )* time .Second )
5050 defer cancelCtx ()
5151 err = f .Start (ctx )
@@ -255,7 +255,7 @@ func TestFDB(t *testing.T) {
255255func TestFDBLargeRecords (t * testing.T ) {
256256 forceRetryTransaction = func (i int ) bool { return i < 1 }
257257
258- f := NewFdbStructured (connectionString , "dir1" )
258+ f := NewFdbStructured (connectionString ,, "dir1" )
259259 ctx , cancelCtx := context .WithTimeout (context .Background (), time .Duration (100 )* time .Second )
260260 defer cancelCtx ()
261261
@@ -341,7 +341,7 @@ func TestCompaction(t *testing.T) {
341341 newValue := []byte ("newVal123" )
342342 updatedLease := int64 (123 )
343343
344- f := NewFdbStructured (connectionString , "dir1" )
344+ f := NewFdbStructured (connectionString ,, "dir1" )
345345 ctx , cancelCtx := context .WithTimeout (context .Background (), time .Duration (20 )* time .Second )
346346 defer cancelCtx ()
347347
@@ -472,7 +472,7 @@ func TestWatchAll(t *testing.T) {
472472 maxBatchSize = 10
473473 recordsCount := 53
474474
475- f := NewFdbStructured (connectionString , "dir1" )
475+ f := NewFdbStructured (connectionString ,, "dir1" )
476476 ctx , cancelCtx := context .WithTimeout (context .Background (), time .Duration (3 )* time .Second )
477477 defer cancelCtx ()
478478
@@ -502,7 +502,7 @@ func TestExceedSizeLarge(t *testing.T) {
502502 _ , err := rand .Read (value )
503503 require .NoError (t , err )
504504
505- f := NewFdbStructured (connectionString , "dir1" )
505+ f := NewFdbStructured (connectionString ,, "dir1" )
506506 ctx , cancelCtx := context .WithTimeout (context .Background (), time .Duration (3 )* time .Second )
507507 defer cancelCtx ()
508508
0 commit comments