mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-30 14:22:20 +02:00
NO ConfigureAwait(false) + cleanup
This commit is contained in:
@@ -491,7 +491,7 @@ public class RequestMessageBodyMatcherTests
|
||||
ContentType = null,
|
||||
DeserializeJson = true
|
||||
};
|
||||
bodyData = await BodyParser.ParseAsync(bodyParserSettings).ConfigureAwait(false);
|
||||
bodyData = await BodyParser.ParseAsync(bodyParserSettings);
|
||||
}
|
||||
else if (body is string s)
|
||||
{
|
||||
@@ -501,7 +501,7 @@ public class RequestMessageBodyMatcherTests
|
||||
ContentType = null,
|
||||
DeserializeJson = true
|
||||
};
|
||||
bodyData = await BodyParser.ParseAsync(bodyParserSettings).ConfigureAwait(false);
|
||||
bodyData = await BodyParser.ParseAsync(bodyParserSettings);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user