aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/test/cases/statement_cache_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/test/cases/statement_cache_test.rb b/activerecord/test/cases/statement_cache_test.rb
index ab81ee1ad6..fab3648564 100644
--- a/activerecord/test/cases/statement_cache_test.rb
+++ b/activerecord/test/cases/statement_cache_test.rb
@@ -109,11 +109,11 @@ module ActiveRecord
def test_find_by_does_not_use_statement_cache_if_table_name_is_changed
book = Book.create(name: "my book")
- Book.find_by(name: "my book") # warming the statement cache.
+ Book.find_by(name: book.name) # warming the statement cache.
# changing the table name should change the query that is not cached.
Book.table_name = :birds
- assert_nil Book.find_by(name: "my book")
+ assert_nil Book.find_by(name: book.name)
ensure
Book.table_name = :books
end