From 8b674285d42c5e09144a9a63715cf4247106b83d Mon Sep 17 00:00:00 2001 From: Iraq Jaber Date: Mon, 28 Jul 2025 08:09:56 +0100 Subject: [PATCH] fixup! fixup! fixup! feat(idp_table_relational): adding inital idp tables for relational repository --- backend/v3/storage/database/repository/id_provider_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/v3/storage/database/repository/id_provider_test.go b/backend/v3/storage/database/repository/id_provider_test.go index c5e9c41e06..e52b78bdfd 100644 --- a/backend/v3/storage/database/repository/id_provider_test.go +++ b/backend/v3/storage/database/repository/id_provider_test.go @@ -1661,13 +1661,13 @@ func TestListIDProvider(t *testing.T) { } for _, tt := range tests { t.Run(tt.name, func(t *testing.T) { + ctx := context.WithoutCancel(t.Context()) + t.Cleanup(func() { _, err := pool.Exec(ctx, "DELETE FROM zitadel.identity_providers") require.NoError(t, err) }) - ctx := context.WithoutCancel(t.Context()) - idps := tt.testFunc(ctx, t) // check idp values