aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/finder_test.rb
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2017-12-14 17:30:54 +0900
committerRyuta Kamizono <kamipo@gmail.com>2017-12-14 17:30:54 +0900
commit245c1dafa8bab409fbcd780a996c619240df7143 (patch)
tree9870d3018fcc16f9d78e76cb40c0a1af4ab4ca55 /activerecord/test/cases/finder_test.rb
parent65e994c063fdc42265712854598649ec7607faec (diff)
downloadrails-245c1dafa8bab409fbcd780a996c619240df7143.tar.gz
rails-245c1dafa8bab409fbcd780a996c619240df7143.tar.bz2
rails-245c1dafa8bab409fbcd780a996c619240df7143.zip
Enable `Layout/LeadingCommentSpace` to not allow cosmetic changes in the future
Follow up of #31432.
Diffstat (limited to 'activerecord/test/cases/finder_test.rb')
-rw-r--r--activerecord/test/cases/finder_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/finder_test.rb b/activerecord/test/cases/finder_test.rb
index 2076b57aa8..62d5d88fcc 100644
--- a/activerecord/test/cases/finder_test.rb
+++ b/activerecord/test/cases/finder_test.rb
@@ -565,7 +565,7 @@ class FinderTest < ActiveRecord::TestCase
assert_nil Topic.offset(4).second_to_last
assert_nil Topic.offset(5).second_to_last
- #test with limit
+ # test with limit
assert_nil Topic.limit(1).second
assert_nil Topic.limit(1).second_to_last
end