Add more QueryParameterMultipleValueSupport NoComma tests

This commit is contained in:
Stef Heyenrath
2022-11-30 07:36:13 +00:00
parent ef5f988786
commit 1562958172
3 changed files with 41 additions and 2 deletions

View File

@@ -104,7 +104,7 @@ public class RequestMessageBodyMatcher : IRequestMatcher
/// Initializes a new instance of the <see cref="RequestMessageBodyMatcher"/> class.
/// </summary>
/// <param name="func">The function.</param>
public RequestMessageBodyMatcher(Func<IBodyData, bool> func)
public RequestMessageBodyMatcher(Func<IBodyData?, bool> func)
{
BodyDataFunc = Guard.NotNull(func);
}