Skip to content

Commit

Permalink
remove unused method
Browse files Browse the repository at this point in the history
  • Loading branch information
pascal-fischer committed Dec 10, 2024
1 parent 9cd13c8 commit 68adc31
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions management/server/store/sql_store_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 68adc31

Please sign in to comment.