diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2017-12-28 09:19:34 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-28 09:19:34 -0800 |
commit | 6cf061ed6f3f9c8128385765c07eaa4f8a43bd34 (patch) | |
tree | 90157d2ed04ec2fe1282c833e1af9ba529bc51c4 /test/collectors | |
parent | bb0e60f40c1aa38096122c4a4836c8db6bf56ff9 (diff) | |
parent | 773f5e5a0b172754289de527bcba6b923bbc3d0e (diff) | |
download | rails-6cf061ed6f3f9c8128385765c07eaa4f8a43bd34.tar.gz rails-6cf061ed6f3f9c8128385765c07eaa4f8a43bd34.tar.bz2 rails-6cf061ed6f3f9c8128385765c07eaa4f8a43bd34.zip |
Merge pull request #513 from itsNikolay/remove_unused_requires
Remove Unused `require`
Diffstat (limited to 'test/collectors')
-rw-r--r-- | test/collectors/test_bind.rb | 2 | ||||
-rw-r--r-- | test/collectors/test_composite.rb | 1 |
2 files changed, 0 insertions, 3 deletions
diff --git a/test/collectors/test_bind.rb b/test/collectors/test_bind.rb index 6b4b651cf7..62fd911a0f 100644 --- a/test/collectors/test_bind.rb +++ b/test/collectors/test_bind.rb @@ -1,8 +1,6 @@ # frozen_string_literal: true require 'helper' -require 'arel/collectors/bind' - module Arel module Collectors class TestBind < Arel::Test diff --git a/test/collectors/test_composite.rb b/test/collectors/test_composite.rb index b47c37db73..3d49b390e8 100644 --- a/test/collectors/test_composite.rb +++ b/test/collectors/test_composite.rb @@ -3,7 +3,6 @@ require 'helper' require 'arel/collectors/bind' require 'arel/collectors/composite' -require 'arel/collectors/sql_string' module Arel module Collectors |