From 75930ed82fa5605c193005bfaefaeee603b8037d Mon Sep 17 00:00:00 2001 From: Ben Johnson Date: Thu, 23 Jul 2020 09:37:50 -0600 Subject: [PATCH] Remove generation of rbf/fun.dot in tests --- rbf/cursor_test.go | 7 ------- 1 file changed, 7 deletions(-) diff --git a/rbf/cursor_test.go b/rbf/cursor_test.go index 9e98fafb3..0db356177 100644 --- a/rbf/cursor_test.go +++ b/rbf/cursor_test.go @@ -1035,7 +1035,6 @@ func TestCursor_PlayContainer(t *testing.T) { if err := cur.First(); err != nil { panic(err) } - cur.Dump("fun.dot") } func TestCursor_OneBitmap(t *testing.T) { @@ -1071,7 +1070,6 @@ func TestCursor_OneBitmap(t *testing.T) { if err := cur.First(); err != nil { panic(err) } - cur.Dump("fun.dot") } func TestCursor_GenerateAll(t *testing.T) { db := MustOpenDB(t) @@ -1111,9 +1109,4 @@ func TestCursor_GenerateAll(t *testing.T) { if _, err := tx.AddRoaring("field/view/", bb); err != nil { panic(err) } - cur, err := tx.Cursor("field/view/") - if err != nil { - panic(err) - } - cur.Dump("fun.dot") }