From fc50621644c327743acf40a6bc82ff639e2c91bc Mon Sep 17 00:00:00 2001 From: jilling Date: Fri, 15 Mar 2024 16:21:20 +0100 Subject: [PATCH] fix IT --- tests/legalentity/integration_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/legalentity/integration_test.go b/tests/legalentity/integration_test.go index b58617871..f245e8624 100644 --- a/tests/legalentity/integration_test.go +++ b/tests/legalentity/integration_test.go @@ -54,7 +54,7 @@ func Test_LegalEntity_Integration(t *testing.T) { res, httpRes, err := service.LegalEntitiesApi.GetLegalEntity(context.Background(), req) require.NoError(t, err) - assert.Equal(t, 200, httpRes.StatusCode) + assert.Equal(t, 202, httpRes.StatusCode) assert.Equal(t, legalEntityId, res.GetId()) }) }