Skip to content

Commit c402e4e

Browse files
hyehayes-googlespullara
authored andcommitted
better test name for mapobjecthandler
1 parent 550eb6f commit c402e4e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compiler/src/test/java/com/github/mustachejava/MapObjectHandlerTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
public class MapObjectHandlerTest {
1111

1212
@Test
13-
public void testReflectionDisabledFieldsIgnored() {
13+
public void testFieldsIgnored() {
1414
String template = "{{field}}";
1515
Object scope = new Object() {
1616
public final String field = "value";
@@ -27,7 +27,7 @@ public void testReflectionDisabledFieldsIgnored() {
2727
}
2828

2929
@Test
30-
public void testReflectionDisabledMethodsIgnored() {
30+
public void testMethodsIgnored() {
3131
String template = "{{method}}";
3232
Object scope = new Object() {
3333
public String method() {

0 commit comments

Comments
 (0)