Skip to content

Commit 1b9b968

Browse files
authored
Fix indentation
1 parent a7cce70 commit 1b9b968

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exercises/concept/bird-watcher/src/test/java/BirdWatcherTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ public void itIncrementTodaysCount() {
5151
@Tag("task:3")
5252
@DisplayName("The incrementTodaysCount does not change count for other days")
5353
public void itIncrementDoesNotChangeCountForOtherDays() {
54-
birdWatcher.incrementTodaysCount();
55-
assertThat(birdWatcher.getCountForFirstDays(6)).isEqualTo(DAY1 + DAY2 + DAY3 + DAY4 + DAY5 + DAY6);
54+
birdWatcher.incrementTodaysCount();
55+
assertThat(birdWatcher.getCountForFirstDays(6)).isEqualTo(DAY1 + DAY2 + DAY3 + DAY4 + DAY5 + DAY6);
5656
}
5757

5858
@Test

0 commit comments

Comments
 (0)