Skip to content

Commit

Permalink
Merge pull request #21753 from jonatack/fix-typo-in-ignored_columns_test
Browse files Browse the repository at this point in the history
Fix typo in ignored_columns test [skip ci]
  • Loading branch information
rafaelfranca committed Sep 24, 2015
2 parents 8587cf0 + c5d4251 commit 9b966f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion activerecord/test/cases/base_test.rb
Expand Up @@ -1578,7 +1578,7 @@ def test_default_values_are_deeply_dupped
refute_includes Developer.columns_hash.keys, 'first_name'
end

test "ignored columns have no attirbute methods" do
test "ignored columns have no attribute methods" do
refute Developer.new.respond_to?(:first_name)
refute Developer.new.respond_to?(:first_name=)
refute Developer.new.respond_to?(:first_name?)
Expand Down

0 comments on commit 9b966f6

Please sign in to comment.