Skip to content

Commit

Permalink
Fix CustomSQL test syntax (#511)
Browse files Browse the repository at this point in the history
  • Loading branch information
eycho-am committed Oct 20, 2023
1 parent d7eb316 commit 80cd501
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ class CustomSqlTest extends AnyWordSpec with Matchers with SparkContextSpec with
metric.value.isFailure shouldBe true
metric.value match {
case Success(_) => fail("Should have failed")
case Failure(exception) => exception.getMessage should include("`foo`")
case Failure(exception) => exception.getMessage should include("foo")
}
}
}
Expand Down

0 comments on commit 80cd501

Please sign in to comment.