aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2009-04-22 19:50:24 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2009-04-22 19:50:24 -0700
commit236169e85ec46644795520b826543187cf93b984 (patch)
tree2f1ffa2c20d69dd59a190cba979abf329f95269b /railties
parentd23ab4fbb6fadd484d44d2f568eb81302a0a5670 (diff)
downloadrails-236169e85ec46644795520b826543187cf93b984.tar.gz
rails-236169e85ec46644795520b826543187cf93b984.tar.bz2
rails-236169e85ec46644795520b826543187cf93b984.zip
Missed one
Diffstat (limited to 'railties')
-rw-r--r--railties/test/plugin_locator_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/test/plugin_locator_test.rb b/railties/test/plugin_locator_test.rb
index f028bd3a61..855ac7d82f 100644
--- a/railties/test/plugin_locator_test.rb
+++ b/railties/test/plugin_locator_test.rb
@@ -50,7 +50,7 @@ class PluginFileSystemLocatorTest < Test::Unit::TestCase
assert_equal ["acts_as_chunky_bacon", "gemlike", "plugin_with_no_lib_dir", "stubby"].sort, @locator.plugins.map { |p| p.name }.sort
@configuration.plugin_paths = [File.join(plugin_fixture_root_path, "alternate")]
- assert_equal ["a"], @locator.plugins.map(&:name)
+ assert_equal ["a"], @locator.plugins.map { |p| p.name }
end
def test_should_not_raise_any_error_and_return_no_plugins_if_the_plugin_path_value_does_not_exist