aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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