Skip to content

Commit

Permalink
Fix incorrectly copied description in test
Browse files Browse the repository at this point in the history
  • Loading branch information
adamcrown committed Dec 15, 2015
1 parent 4aa325b commit c3c170b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/canada_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ def test_respond_to?
yes = [:empty?, :empty_eh?, :respond_to?, :respond_to_eh?]
no = [:not_there, :not_there?, :not_there_eh, :not_there_eh?]

yes.each { |y| assert([].respond_to?(y), "Array should respond_to_eh? #{y}") }
no.each { |n| refute([].respond_to?(n), "Array should not respond_to_eh? #{n}") }
yes.each { |y| assert([].respond_to?(y), "Array should respond_to? #{y}") }
no.each { |n| refute([].respond_to?(n), "Array should not respond_to? #{n}") }
end

def test_aboot
Expand Down

0 comments on commit c3c170b

Please sign in to comment.