Skip to content

Commit

Permalink
Fix CustomSQL test syntax (awslabs#511)
Browse files Browse the repository at this point in the history
  • Loading branch information
eycho-am authored and javierdlrm committed Oct 31, 2023
1 parent 7c11635 commit d6af919
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 d6af919

Please sign in to comment.