Skip to content

Commit

Permalink
test: Adjust expected failure message
Browse files Browse the repository at this point in the history
The failure message for a non-existing context entry changed. Adjust the expected message of the test case.
  • Loading branch information
saig0 committed Sep 5, 2023
1 parent 07c0d5a commit 56b55ad
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class SuppressedFailuresTest extends AnyFlatSpec
it should "report a suppressed failure for a non-existing context entry" in {
evaluateExpression("{x: 1}.y") should reportFailure(
failureType = EvaluationFailureType.NO_CONTEXT_ENTRY_FOUND,
failureMessage = "context contains no entry with key 'y'"
failureMessage = "No context entry found with key 'y'. Available keys: x"
)
}

Expand Down

0 comments on commit 56b55ad

Please sign in to comment.