diff --git a/src/Faqt.Tests/HttpResponseMessageAssertions.fs b/src/Faqt.Tests/HttpResponseMessageAssertions.fs index 88666a7..0252dd8 100644 --- a/src/Faqt.Tests/HttpResponseMessageAssertions.fs +++ b/src/Faqt.Tests/HttpResponseMessageAssertions.fs @@ -2829,7 +2829,7 @@ Request: GET / HTTP/0.5 """ Subject: respContent 200 "foo" Should: HaveStringContentSatisfying -Exception: |- +But threw: |- System.Exception: foo * Response: |- @@ -2847,14 +2847,14 @@ Request: GET / HTTP/0.5 fun () -> (respContent 200 "foo") .Should() - .HaveStringContentSatisfying(fun _ -> failwith "foo") + .HaveStringContentSatisfying((fun _ -> failwith "foo"), "Some reason") |> Async.RunSynchronously |> assertExnMsgWildcard """ Subject: respContent 200 "foo" Because: Some reason Should: HaveStringContentSatisfying -Exception: |- +But threw: |- System.Exception: foo * Response: |-