diff options
author | Sean Griffin <sean@seantheprogrammer.com> | 2017-07-25 09:14:18 -0400 |
---|---|---|
committer | Sean Griffin <sean@seantheprogrammer.com> | 2017-07-25 09:14:48 -0400 |
commit | 82200b2541c2e1adee2919aaaccf4bf268c9af99 (patch) | |
tree | c7141049f88443ab094d4de58f83e5f68a79d6d7 /activerecord/test/cases/relation | |
parent | b691a946ba229b72f9ec30e50ba5b9ba1e39e6fa (diff) | |
download | rails-82200b2541c2e1adee2919aaaccf4bf268c9af99.tar.gz rails-82200b2541c2e1adee2919aaaccf4bf268c9af99.tar.bz2 rails-82200b2541c2e1adee2919aaaccf4bf268c9af99.zip |
Fix failing tests
`bind_values` was removed from Arel
Diffstat (limited to 'activerecord/test/cases/relation')
-rw-r--r-- | activerecord/test/cases/relation/delegation_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/relation/delegation_test.rb b/activerecord/test/cases/relation/delegation_test.rb index 341335be9b..3089aee959 100644 --- a/activerecord/test/cases/relation/delegation_test.rb +++ b/activerecord/test/cases/relation/delegation_test.rb @@ -26,7 +26,7 @@ module ActiveRecord module DeprecatedArelDelegationTests AREL_METHODS = [ :with, :orders, :froms, :project, :projections, :taken, :constraints, :exists, :locked, :where_sql, - :ast, :source, :join_sources, :to_dot, :bind_values, :create_insert, :create_true, :create_false + :ast, :source, :join_sources, :to_dot, :create_insert, :create_true, :create_false ] def test_deprecate_arel_delegation |