aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2019-04-13 11:36:10 +0900
committerRyuta Kamizono <kamipo@gmail.com>2019-04-13 11:43:47 +0900
commitcc6bff3daa4da4d2c6935761d0ab059201f772e2 (patch)
treefd72f244ab7f9363fca24a149fec254f077e57e1 /activerecord/test
parenta47449891421a727d751c0df929358e6aa89cd8a (diff)
downloadrails-cc6bff3daa4da4d2c6935761d0ab059201f772e2.tar.gz
rails-cc6bff3daa4da4d2c6935761d0ab059201f772e2.tar.bz2
rails-cc6bff3daa4da4d2c6935761d0ab059201f772e2.zip
Auto-correct `Style/StringLiterals` cop offences
Somehow Code Climate is not working as expected for now?
Diffstat (limited to 'activerecord/test')
-rw-r--r--activerecord/test/cases/adapter_test.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/activerecord/test/cases/adapter_test.rb b/activerecord/test/cases/adapter_test.rb
index 86257790a7..ce2ed06c1d 100644
--- a/activerecord/test/cases/adapter_test.rb
+++ b/activerecord/test/cases/adapter_test.rb
@@ -491,7 +491,7 @@ module ActiveRecord
assert_equal 0, Post.count
ensure
- reset_fixtures('posts')
+ reset_fixtures("posts")
end
def test_truncate_with_query_cache
@@ -503,7 +503,7 @@ module ActiveRecord
assert_equal 0, Post.count
ensure
- reset_fixtures('posts')
+ reset_fixtures("posts")
@connection.disable_query_cache!
end
@@ -518,7 +518,7 @@ module ActiveRecord
assert_equal 0, Author.count
assert_equal 0, AuthorAddress.count
ensure
- reset_fixtures('posts', 'authors', 'author_addresses')
+ reset_fixtures("posts", "authors", "author_addresses")
end
def test_truncate_tables_with_query_cache
@@ -534,7 +534,7 @@ module ActiveRecord
assert_equal 0, Author.count
assert_equal 0, AuthorAddress.count
ensure
- reset_fixtures('posts', 'authors', 'author_addresses')
+ reset_fixtures("posts", "authors", "author_addresses")
@connection.disable_query_cache!
end