Skip to content

Commit

Permalink
Remove printable charlists from bird-count (lists) (#1398)
Browse files Browse the repository at this point in the history
* Remove printable charlists from bird-count (lists)

* Ignore reddit.com links
  • Loading branch information
angelikatyborska authored Jan 7, 2024
1 parent 8d74999 commit caa977d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exercises/concept/bird-count/test/bird_count_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ defmodule BirdCountTest do

@tag task_id: 1
test "returns today's bird count" do
assert BirdCount.today([7]) == 7
assert BirdCount.today([5]) == 5
assert BirdCount.today([2, 4, 11, 10, 6, 8]) == 2
end
end
Expand All @@ -22,7 +22,7 @@ defmodule BirdCountTest do

@tag task_id: 2
test "adds 1 to today's bird count" do
assert BirdCount.increment_day_count([7]) == [8]
assert BirdCount.increment_day_count([5]) == [6]
assert BirdCount.increment_day_count([4, 2, 1, 0, 10]) == [5, 2, 1, 0, 10]
end
end
Expand Down

0 comments on commit caa977d

Please sign in to comment.