Skip to content

Commit

Permalink
chore(feel): bump feel scala version
Browse files Browse the repository at this point in the history
This fixes an issue with unary-test comparison not being evaluated
without braces

Related to CAM-11269
  • Loading branch information
mboskamp authored Nov 1, 2021
1 parent a53db59 commit 7ad15fb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ public void shouldCompareShortUntyped() {
.hasSingleEntry(true);
}

@Ignore("CAM-11269")
@Test
@DecisionResource(resource = "breaking_unary_test_boolean.dmn")
public void shouldEqualBoolean() {
Expand Down Expand Up @@ -110,8 +109,8 @@ public void shouldUseSingleQuotesInStringLiterals() {

// then
thrown.expect(FeelException.class);
thrown.expectMessage("failed to parse expression ''Hello World'': " +
"Expected (\"not\" | positiveUnaryTests | unaryTests):1:1, found \"'Hello Wor\"");
thrown.expectMessage("FEEL/SCALA-01008 Error while evaluating expression: failed to parse expression ''Hello World'': "
+ "Expected (acceptAnyInputValue | \"not\" | positiveUnaryTests):1:1, found \"'Hello Wor\"");

// when
engine.evaluateDecision(decision, Variables.createVariables().putValue("input", "Hello World"));
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<version.camunda.spin>1.11.0</version.camunda.spin>
<version.camunda.template-engines>2.1.0</version.camunda.template-engines>
<version.camunda.ee.xslt-plugin>1.1.0</version.camunda.ee.xslt-plugin>
<version.feel-scala>1.13.1</version.feel-scala>
<version.feel-scala>1.13.3</version.feel-scala>
<plugin.version.javadoc>3.0.1</plugin.version.javadoc>
</properties>

Expand Down

0 comments on commit 7ad15fb

Please sign in to comment.