Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Christer van der Meeren committed Aug 13, 2024
1 parent e8b7886 commit 450d02c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Faqt.Tests/HttpResponseMessageAssertions.fs
Original file line number Diff line number Diff line change
Expand Up @@ -2829,7 +2829,7 @@ Request: GET / HTTP/0.5
"""
Subject: respContent 200 "foo"
Should: HaveStringContentSatisfying
Exception: |-
But threw: |-
System.Exception: foo
*
Response: |-
Expand All @@ -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: |-
Expand Down

0 comments on commit 450d02c

Please sign in to comment.