Skip to content

Commit d689a58

Browse files
authored
Update BirdWatcherTest.java (exercism#1983)
Removed duplicate @ignore annotations in BirdWatcherTest
1 parent 88b5ac7 commit d689a58

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

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

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ public void itHasDayWithoutBirds() {
5050

5151
@Test
5252
@Ignore("Remove to run test")
53-
@Ignore
5453
public void itShouldNotHaveDaysWithoutBirds() {
5554
birdWatcher = new BirdWatcher(new int[]{1, 2, 5, 3, 7, 8, 4});
5655
assertThat(birdWatcher.hasDayWithoutBirds()).isFalse();
@@ -65,7 +64,6 @@ public void itTestGetCountForFirstDays() {
6564

6665
@Test
6766
@Ignore("Remove to run test")
68-
@Ignore
6967
public void itTestGetCountForMoreDaysThanTheArraySize() {
7068
assertThat(birdWatcher.getCountForFirstDays(10)).isEqualTo(29);
7169
}
@@ -78,7 +76,6 @@ public void itTestGetCountForBusyDays() {
7876

7977
@Test
8078
@Ignore("Remove to run test")
81-
@Ignore
8279
public void itShouldNotHaveBusyDays() {
8380
birdWatcher = new BirdWatcher(new int[]{1, 2, 3, 3, 2, 1, 4});
8481
assertThat(birdWatcher.getBusyDays()).isEqualTo(0);

0 commit comments

Comments
 (0)