浏览代码

Fix typo in test name

As I don't think the month of Map exists, I'm guessing this is meant to be May :)
Dimas Guardado 10 年前
父节点
当前提交
1f2fcff988
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      exercises/meetup/src/test/java/MeetupTest.java

+ 1
- 1
exercises/meetup/src/test/java/MeetupTest.java 查看文件

@@ -136,7 +136,7 @@ public class MeetupTest {
136 136
     }
137 137
 
138 138
     @Test
139
-    public void test_sunteenth_of_map_2013() {
139
+    public void test_sunteenth_of_may_2013() {
140 140
         DateTime expected = new DateTime(2013, 5, 19, 0, 0);
141 141
         Meetup meetup = new Meetup(5, 2013);
142 142
         assertThat(meetup.day(SUNDAY, MeetupSchedule.TEENTH)).isEqualTo(expected);