From 9710eb130146d669df50a0e35c1c3f742c1e3f9e Mon Sep 17 00:00:00 2001 From: Mahmoud Ben Hassine Date: Sun, 1 Dec 2019 21:34:13 +0100 Subject: [PATCH] fix test name --- .../src/test/java/org/jeasy/rules/spel/SpELActionTest.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/easy-rules-spel/src/test/java/org/jeasy/rules/spel/SpELActionTest.java b/easy-rules-spel/src/test/java/org/jeasy/rules/spel/SpELActionTest.java index 41a7cf9..fd36935 100644 --- a/easy-rules-spel/src/test/java/org/jeasy/rules/spel/SpELActionTest.java +++ b/easy-rules-spel/src/test/java/org/jeasy/rules/spel/SpELActionTest.java @@ -71,7 +71,7 @@ public class SpELActionTest { } @Test - public void testMVELActionExecutionWithFailure() throws Exception { + public void testSpELActionExecutionWithFailure() throws Exception { // given expectedException.expect(Exception.class); expectedException.expectMessage("EL1004E: Method call: Method setBlah(java.lang.Boolean) cannot be found on type org.jeasy.rules.spel.Person"); @@ -88,7 +88,7 @@ public class SpELActionTest { } @Test - public void testMVELActionWithExpressionAndParserContext() throws Exception { + public void testSpELActionWithExpressionAndParserContext() throws Exception { // given ParserContext context = new TemplateParserContext(); Action printAction = new SpELAction("#{ T(org.jeasy.rules.spel.Person).sayHello() }", context); @@ -101,4 +101,4 @@ public class SpELActionTest { assertThat(systemOutRule.getLog()).contains("hello"); } -} \ No newline at end of file +}