mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Drop extra variable from test
This commit is contained in:
parent
de9e9bbbad
commit
48b6860b79
1 changed files with 2 additions and 2 deletions
|
@ -10,7 +10,7 @@ class LoadPathsTest < ActiveSupport::TestCase
|
|||
}
|
||||
load_paths_count[File.expand_path('../../lib', __FILE__)] -= 1
|
||||
|
||||
filtered = load_paths_count.select { |k, v| v > 1 }
|
||||
assert filtered.empty?, filtered.inspect
|
||||
load_paths_count.select! { |k, v| v > 1 }
|
||||
assert load_paths_count.empty?, load_paths_count.inspect
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue