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 | |
parent | b691a946ba229b72f9ec30e50ba5b9ba1e39e6fa (diff) | |
download | rails-82200b2541c2e1adee2919aaaccf4bf268c9af99.tar.gz rails-82200b2541c2e1adee2919aaaccf4bf268c9af99.tar.bz2 rails-82200b2541c2e1adee2919aaaccf4bf268c9af99.zip |
Fix failing tests
`bind_values` was removed from Arel
-rw-r--r-- | Gemfile.lock | 2 | ||||
-rw-r--r-- | activerecord/test/cases/relation/delegation_test.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Gemfile.lock b/Gemfile.lock index 304e44112d..0c727a76ca 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -31,7 +31,7 @@ GIT GIT remote: https://github.com/rails/arel.git - revision: 7a29220c689feb0581e21d5324b85fc2f201ac5e + revision: 0e7ce3f4c7c17e72f905b26aff3893149f524888 specs: arel (8.0.0) 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 |