Update management/server/store/sql_store_get_account_test.go

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
This commit is contained in:
Maycon Santos
2026-06-06 09:17:26 +02:00
committed by GitHub
parent 48e06bec0f
commit c43c2fb285

View File

@@ -46,8 +46,8 @@ func TestPostgresql_GetAccount_LoadsCustomDomains(t *testing.T) {
t.Setenv("NETBIRD_STORE_ENGINE", string(types.PostgresStoreEngine))
store, cleanup, err := NewTestStoreFromSQL(context.Background(), "", t.TempDir())
t.Cleanup(cleanup)
require.NoError(t, err)
t.Cleanup(cleanup)
assertGetAccountLoadsCustomDomains(t, store)
}