mirror of https://github.com/rails/rails
Merge pull request #10919 from vipulnsward/cleanup_as_test
Drop extra variable from test
This commit is contained in:
commit
9996e3c351
|
@ -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 New Issue