aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2019-03-19 02:22:06 +0900
committerRyuta Kamizono <kamipo@gmail.com>2019-03-19 02:28:09 +0900
commit98d0f93506b0b97804d0d510ffcc435af9b2a2d5 (patch)
tree7c3b4e8a96e0f729cd62194e54bf30884d7b8202 /activerecord/test
parent0e94a513feb30b382946bef0855869c366a733e9 (diff)
downloadrails-98d0f93506b0b97804d0d510ffcc435af9b2a2d5.tar.gz
rails-98d0f93506b0b97804d0d510ffcc435af9b2a2d5.tar.bz2
rails-98d0f93506b0b97804d0d510ffcc435af9b2a2d5.zip
Don't expose internal `type_casted_binds` method
Internal usage for the method as public has removed at #29623.
Diffstat (limited to 'activerecord/test')
-rw-r--r--activerecord/test/cases/bind_parameter_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/bind_parameter_test.rb b/activerecord/test/cases/bind_parameter_test.rb
index eb8b45431f..85685d1d00 100644
--- a/activerecord/test/cases/bind_parameter_test.rb
+++ b/activerecord/test/cases/bind_parameter_test.rb
@@ -184,7 +184,7 @@ if ActiveRecord::Base.connection.prepared_statements
name: "SQL",
sql: "select * from topics where id = ?",
binds: binds,
- type_casted_binds: @connection.type_casted_binds(binds)
+ type_casted_binds: @connection.send(:type_casted_binds, binds)
}
event = ActiveSupport::Notifications::Event.new(