Skip to content

Commit

Permalink
fixed code smell
Browse files Browse the repository at this point in the history
  • Loading branch information
acn-sbuad committed May 7, 2024
1 parent d1ca56c commit aa1ce14
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public UnitContactPointControllerTests(WebApplicationFactory<UnitContactPointCon

_webApplicationFactorySetup.SblBridgeHttpMessageHandler = new DelegatingHandlerStub(async (request, token) =>
{
string requestString = await request.Content.ReadAsStringAsync(token);
string requestString = await request.Content.ReadAsStringAsync();
UnitContactPointLookup lookup = JsonSerializer.Deserialize<UnitContactPointLookup>(requestString, _serializerOptions);
return GetSBlResponseFromSBL(lookup.OrganizationNumbers[0]);
});
Expand Down

0 comments on commit aa1ce14

Please sign in to comment.