From 56b55ad5710f8a0c667b4f5e5789f198c4ffe3d1 Mon Sep 17 00:00:00 2001 From: Philipp Ossler Date: Fri, 28 Jul 2023 06:13:48 +0200 Subject: [PATCH] test: Adjust expected failure message The failure message for a non-existing context entry changed. Adjust the expected message of the test case. --- .../scala/org/camunda/feel/impl/SuppressedFailuresTest.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/scala/org/camunda/feel/impl/SuppressedFailuresTest.scala b/src/test/scala/org/camunda/feel/impl/SuppressedFailuresTest.scala index 4ef024b98..c626a6739 100644 --- a/src/test/scala/org/camunda/feel/impl/SuppressedFailuresTest.scala +++ b/src/test/scala/org/camunda/feel/impl/SuppressedFailuresTest.scala @@ -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" ) }