File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed
Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -1444,7 +1444,6 @@ func TestCursor_Bind(t *testing.T) {
14441444
14451445 err = env .View (func (txn * Txn ) (err error ) {
14461446 {
1447- println ("dbi1" , db1 , "dbi2" , db2 )
14481447 err = cur .Bind (txn , db1 )
14491448 if err != nil {
14501449 return err
@@ -1488,6 +1487,7 @@ func TestCursor_Bind(t *testing.T) {
14881487}
14891488
14901489func TestCursor_BindOnEmptyDbi (t * testing.T ) {
1490+ t .Skip () // TODO: uncomment on v0.13.6
14911491 env , _ := setup (t )
14921492
14931493 var db1 , db2 DBI
@@ -1513,11 +1513,9 @@ func TestCursor_BindOnEmptyDbi(t *testing.T) {
15131513 }
15141514
15151515 err = env .View (func (txn * Txn ) (err error ) {
1516- {
1517- err = cur .Bind (txn , db1 )
1518- if err != nil {
1519- return err
1520- }
1516+ err = cur .Bind (txn , db1 )
1517+ if err != nil {
1518+ return err
15211519 }
15221520 return nil
15231521 })
You can’t perform that action at this time.
0 commit comments