diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2019-04-13 11:36:10 +0900 |
---|---|---|
committer | Ryuta Kamizono <kamipo@gmail.com> | 2019-04-13 11:43:47 +0900 |
commit | cc6bff3daa4da4d2c6935761d0ab059201f772e2 (patch) | |
tree | fd72f244ab7f9363fca24a149fec254f077e57e1 | |
parent | a47449891421a727d751c0df929358e6aa89cd8a (diff) | |
download | rails-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?
-rw-r--r-- | activerecord/test/cases/adapter_test.rb | 8 |
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 |