From 68adc31d75ac2a3ab58151812961833b5e9e0302 Mon Sep 17 00:00:00 2001 From: Pascal Fischer Date: Wed, 11 Dec 2024 00:34:47 +0100 Subject: [PATCH] remove unused method --- management/server/store/sql_store_test.go | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/management/server/store/sql_store_test.go b/management/server/store/sql_store_test.go index 5dcc8d6933d..7026bc4ec1d 100644 --- a/management/server/store/sql_store_test.go +++ b/management/server/store/sql_store_test.go @@ -705,19 +705,6 @@ func TestMigrate(t *testing.T) { } -func newSqliteStore(t *testing.T) *SqlStore { - t.Helper() - - store, err := NewSqliteStore(context.Background(), t.TempDir(), nil) - t.Cleanup(func() { - store.Close(context.Background()) - }) - require.NoError(t, err) - require.NotNil(t, store) - - return store -} - func newAccount(store Store, id int) error { str := fmt.Sprintf("%s-%d", uuid.New().String(), id) account := newAccountWithId(context.Background(), str, str+"-testuser", "example.com")