diff options
author | Nikolay Ponomarev <itsnikolay@gmail.com> | 2017-12-27 23:33:54 +0300 |
---|---|---|
committer | Nikolay Ponomarev <itsnikolay@gmail.com> | 2017-12-27 23:33:54 +0300 |
commit | 773f5e5a0b172754289de527bcba6b923bbc3d0e (patch) | |
tree | 90157d2ed04ec2fe1282c833e1af9ba529bc51c4 /test/visitors | |
parent | bb0e60f40c1aa38096122c4a4836c8db6bf56ff9 (diff) | |
download | rails-773f5e5a0b172754289de527bcba6b923bbc3d0e.tar.gz rails-773f5e5a0b172754289de527bcba6b923bbc3d0e.tar.bz2 rails-773f5e5a0b172754289de527bcba6b923bbc3d0e.zip |
Remove Unused `require`
It looks like they are left from old design
Diffstat (limited to 'test/visitors')
-rw-r--r-- | test/visitors/test_depth_first.rb | 1 | ||||
-rw-r--r-- | test/visitors/test_to_sql.rb | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/test/visitors/test_depth_first.rb b/test/visitors/test_depth_first.rb index 0c7f7ccd34..832843265c 100644 --- a/test/visitors/test_depth_first.rb +++ b/test/visitors/test_depth_first.rb @@ -1,6 +1,5 @@ # frozen_string_literal: true require 'helper' -require 'set' module Arel module Visitors diff --git a/test/visitors/test_to_sql.rb b/test/visitors/test_to_sql.rb index eb6eedc55d..77756b9e99 100644 --- a/test/visitors/test_to_sql.rb +++ b/test/visitors/test_to_sql.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true require 'helper' -require 'set' +require 'bigdecimal' module Arel module Visitors |