Skip to content

Commit

Permalink
Fix edsl tests
Browse files Browse the repository at this point in the history
  • Loading branch information
danslapman committed Mar 31, 2024
1 parent 0ea113f commit a32e40e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ class AsyncScalaTestSuiteWholeTest

(mockI
.apply(_: String, _: Option[Any])(_: source.Position))
.expects("Send a GET request.", *, *)
.expects("Send a GET request", *, *)
.once()

(mockI
.apply(_: String, _: Option[Any])(_: source.Position))
.expects("The response contains a random fact obtained from the server.", *, *)
.expects("The response contains a random fact obtained from the server", *, *)
.twice()

mockInformer = mockI.some
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ class MarkdownGeneratorSuite extends AnyFunSuite with Matchers {
|
|```
|
|The response contains a randomly obtained fact from the server
|The response contains a random fact obtained from the server
|
|Response:
|```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class CatsFacts[HttpResponseR] extends ExampleSet[HttpResponseR] {
path = "/fact",
headers = Seq("X-CSRF-TOKEN" -> "unEENxJqSLS02rji2GjcKzNLc0C0ySlWih9hSxwn")
)
_ <- describe("The response contains a randomly obtained fact from the server")
_ <- describe("The response contains a random fact obtained from the server")
_ <- checkHttp(
resp,
HttpResponseExpected(
Expand Down

0 comments on commit a32e40e

Please sign in to comment.