Skip to content

Commit

Permalink
Fix response validation
Browse files Browse the repository at this point in the history
  • Loading branch information
bell-db committed Sep 13, 2024
1 parent 687db56 commit aebccb7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class OsSpecificFrontendSpec extends AnyFlatSpec with Matchers {
val (state, response) =
testPluginFrontend(frontend, fakeGenerator, env, toSend)
try {
response mustBe response
response mustBe toReceive
} catch {
case e: TestFailedException =>
System.err.println(s"""Failed on iteration $i of $repeatCount: ${e.getMessage}""")
Expand All @@ -85,7 +85,7 @@ class OsSpecificFrontendSpec extends AnyFlatSpec with Matchers {
val (state, response) =
testPluginFrontend(frontend, fakeGenerator, env, toSend)
try {
response mustBe response
response mustBe toReceive
} catch {
case e: TestFailedException =>
System.err.println(s"""Failed on iteration $repeatCount of $repeatCount: ${e.getMessage}""")
Expand Down

0 comments on commit aebccb7

Please sign in to comment.