We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7cce70 commit 1b9b968Copy full SHA for 1b9b968
exercises/concept/bird-watcher/src/test/java/BirdWatcherTest.java
@@ -51,8 +51,8 @@ public void itIncrementTodaysCount() {
51
@Tag("task:3")
52
@DisplayName("The incrementTodaysCount does not change count for other days")
53
public void itIncrementDoesNotChangeCountForOtherDays() {
54
- birdWatcher.incrementTodaysCount();
55
- assertThat(birdWatcher.getCountForFirstDays(6)).isEqualTo(DAY1 + DAY2 + DAY3 + DAY4 + DAY5 + DAY6);
+ birdWatcher.incrementTodaysCount();
+ assertThat(birdWatcher.getCountForFirstDays(6)).isEqualTo(DAY1 + DAY2 + DAY3 + DAY4 + DAY5 + DAY6);
56
}
57
58
@Test
0 commit comments