Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions exercises/concept/bird-count/bird_count_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def test_total_for_busy_week
assert_equal 65, BirdCount.new([5, 9, 12, 6, 8, 8, 17]).total
end

def test_busy_days_for_dissapointing_week
def test_busy_days_for_disappointing_week
assert_equal 0, BirdCount.new([1, 1, 1, 0, 0, 0, 0]).busy_days
end

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

def test_has_day_without_birds_whith_no_day_without_birds
def test_has_day_without_birds_with_no_day_without_birds
refute BirdCount.new([4, 5, 9, 10, 9, 4, 3]).day_without_birds?
end
end