1
0
Fork 0
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:
Vipul A M 2013-06-12 11:18:35 +05:30
parent de9e9bbbad
commit 48b6860b79

View file

@ -10,7 +10,7 @@ class LoadPathsTest < ActiveSupport::TestCase
} }
load_paths_count[File.expand_path('../../lib', __FILE__)] -= 1 load_paths_count[File.expand_path('../../lib', __FILE__)] -= 1
filtered = load_paths_count.select { |k, v| v > 1 } load_paths_count.select! { |k, v| v > 1 }
assert filtered.empty?, filtered.inspect assert load_paths_count.empty?, load_paths_count.inspect
end end
end end