Merge pull request #10919 from vipulnsward/cleanup_as_test

Drop extra variable from test
This commit is contained in:
Carlos Antonio da Silva 2013-06-12 05:41:30 -07:00
commit 9996e3c351
1 changed files with 2 additions and 2 deletions

View File

@ -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