diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2010-07-26 20:09:34 -0300 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2010-07-26 20:09:34 -0300 |
commit | a2ca9cb78d6117a34671842cd76d20279d24c0ff (patch) | |
tree | a923f1feaa8303fa08d32c398edd406e1564fafd /activesupport | |
parent | b6f99325613baf0534c10677da9c82ac27b628c0 (diff) | |
download | rails-a2ca9cb78d6117a34671842cd76d20279d24c0ff.tar.gz rails-a2ca9cb78d6117a34671842cd76d20279d24c0ff.tar.bz2 rails-a2ca9cb78d6117a34671842cd76d20279d24c0ff.zip |
This is a hash in 1.9.2
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/test/load_paths_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/test/load_paths_test.rb b/activesupport/test/load_paths_test.rb index c8bc1a2ffe..36e3726a02 100644 --- a/activesupport/test/load_paths_test.rb +++ b/activesupport/test/load_paths_test.rb @@ -10,6 +10,6 @@ class LoadPathsTest < Test::Unit::TestCase } load_paths_count[File.expand_path('../../lib', __FILE__)] -= 1 - assert_equal [], load_paths_count.select { |k, v| v > 1 }, $LOAD_PATH.inspect + assert load_paths_count.select { |k, v| v > 1 }.empty?, $LOAD_PATH.inspect end end |