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 Jul 28, 2023
1 parent b104a25 commit 0ac3ac2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,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 0ac3ac2

Please sign in to comment.