From a2e109a07c4790039448a6a9dd4309bbb6d7a9c7 Mon Sep 17 00:00:00 2001 From: Matthew Jaffee Date: Fri, 21 Jan 2022 17:27:21 -0600 Subject: [PATCH] disable roaring backend in test --- executor_test.go | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/executor_test.go b/executor_test.go index a074cf90f..15d792987 100644 --- a/executor_test.go +++ b/executor_test.go @@ -6915,11 +6915,9 @@ func TestTimelessClearRegression(t *testing.T) { } func TestMissingKeyRegression(t *testing.T) { - c := test.MustRunCluster(t, 1, []server.CommandOption{server.OptCommandServerOptions( - pilosa.OptServerStorageConfig(&storage.Config{ - Backend: "roaring", - FsyncEnabled: false, - }))}) + // this used to be explicitly roaring backend... I'm not sure + // whether it is a useful test in post-roaring world. + c := test.MustRunCluster(t, 1) defer c.Close() c.CreateField(t, "i", pilosa.IndexOptions{Keys: true, TrackExistence: true}, "f", pilosa.OptFieldKeys())