Skip to content

Commit a44770c

Browse files
authored
Fix typo in bird_count_test.rb (#1780)
1 parent 4a87211 commit a44770c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

exercises/concept/bird-count/bird_count_test.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def test_total_for_busy_week
2222
assert_equal 65, BirdCount.new([5, 9, 12, 6, 8, 8, 17]).total
2323
end
2424

25-
def test_busy_days_for_dissapointing_week
25+
def test_busy_days_for_disappointing_week
2626
assert_equal 0, BirdCount.new([1, 1, 1, 0, 0, 0, 0]).busy_days
2727
end
2828

@@ -34,7 +34,7 @@ def test_has_day_without_birds
3434
assert BirdCount.new([5, 5, 4, 0, 7, 6]).day_without_birds?
3535
end
3636

37-
def test_has_day_without_birds_whith_no_day_without_birds
37+
def test_has_day_without_birds_with_no_day_without_birds
3838
refute BirdCount.new([4, 5, 9, 10, 9, 4, 3]).day_without_birds?
3939
end
4040
end

0 commit comments

Comments
 (0)