Skip to content

Commit 9710eb1

Browse files
committed
fix test name
1 parent 8c78a14 commit 9710eb1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

easy-rules-spel/src/test/java/org/jeasy/rules/spel/SpELActionTest.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public void testSpELFunctionExecution() throws Exception {
7171
}
7272

7373
@Test
74-
public void testMVELActionExecutionWithFailure() throws Exception {
74+
public void testSpELActionExecutionWithFailure() throws Exception {
7575
// given
7676
expectedException.expect(Exception.class);
7777
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 void testMVELActionExecutionWithFailure() throws Exception {
8888
}
8989

9090
@Test
91-
public void testMVELActionWithExpressionAndParserContext() throws Exception {
91+
public void testSpELActionWithExpressionAndParserContext() throws Exception {
9292
// given
9393
ParserContext context = new TemplateParserContext();
9494
Action printAction = new SpELAction("#{ T(org.jeasy.rules.spel.Person).sayHello() }", context);
@@ -101,4 +101,4 @@ public void testMVELActionWithExpressionAndParserContext() throws Exception {
101101
assertThat(systemOutRule.getLog()).contains("hello");
102102

103103
}
104-
}
104+
}

0 commit comments

Comments
 (0)