[orx-expression-evaluator] Fix tests

This commit is contained in:
Edwin Jakobs
2025-01-15 14:36:41 +01:00
parent 3c9acc49d9
commit 5daa91b543

View File

@@ -40,6 +40,6 @@ class TestExpressionErrors {
val expression = "notExisting + 4"
invoking {
evaluateExpression(expression)
} `should throw` ExpressionException::class `with message` "error in evaluation of 'notExisting+4': unresolved variable: 'notExisting'"
} `should throw` ExpressionException::class `with message` "error in evaluation of 'notExisting+4': unresolved value: 'notExisting'. available values: {}"
}
}