Skip to content

Commit

Permalink
Update endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
Ceredron committed Jan 23, 2025
1 parent 7d17dbe commit 59c0776
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public SblBridgeControllerTests(TestApplicationFactory<SblBridgeController> fact
public async Task RegisterAltinn3CorrespondenceRecipient_InvalidPartyId_ReturnsBadRequestAsync()
{
var client = GetTestClient();
var response = await client.PostAsync("RegisterAltinn3CorrespondenceRecipient/0", null);
var response = await client.PostAsync("correspondencerecipient?partyId=123", null);
Assert.Equal(System.Net.HttpStatusCode.BadRequest, response.StatusCode);
}

Expand Down

0 comments on commit 59c0776

Please sign in to comment.