aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/relation
diff options
context:
space:
mode:
authorKazuhiro Sera <seratch@gmail.com>2018-08-08 21:55:46 +0900
committerKazuhiro Sera <seratch@gmail.com>2018-08-08 21:55:46 +0900
commit52919f3d136b9cfb9876f7e5f890118cfb6b6195 (patch)
treec9991eccd8fbfb777a0bbef2098caa2960cc9094 /activerecord/test/cases/relation
parenta6e86dd2a86a89b7775e27a2f0e728cb6afd1513 (diff)
downloadrails-52919f3d136b9cfb9876f7e5f890118cfb6b6195.tar.gz
rails-52919f3d136b9cfb9876f7e5f890118cfb6b6195.tar.bz2
rails-52919f3d136b9cfb9876f7e5f890118cfb6b6195.zip
Fix the obvious typos detected by github.com/client9/misspell
Diffstat (limited to 'activerecord/test/cases/relation')
-rw-r--r--activerecord/test/cases/relation/select_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/relation/select_test.rb b/activerecord/test/cases/relation/select_test.rb
index 0577e6bfdb..dec8a6925d 100644
--- a/activerecord/test/cases/relation/select_test.rb
+++ b/activerecord/test/cases/relation/select_test.rb
@@ -7,7 +7,7 @@ module ActiveRecord
class SelectTest < ActiveRecord::TestCase
fixtures :posts
- def test_select_with_nil_agrument
+ def test_select_with_nil_argument
expected = Post.select(:title).to_sql
assert_equal expected, Post.select(nil).select(:title).to_sql
end