From 1323374333a2e3856f4a2bad7b04fdcdfce23f6f Mon Sep 17 00:00:00 2001
From: Carlos Antonio da Silva <carlosantoniodasilva@gmail.com>
Date: Thu, 21 Feb 2013 13:07:32 -0300
Subject: Fix test name and refactor fake timezones creation in form options
 test

---
 actionpack/test/template/form_options_helper_test.rb | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

(limited to 'actionpack/test')

diff --git a/actionpack/test/template/form_options_helper_test.rb b/actionpack/test/template/form_options_helper_test.rb
index 04c3fd4649..b68bb159fe 100644
--- a/actionpack/test/template/form_options_helper_test.rb
+++ b/actionpack/test/template/form_options_helper_test.rb
@@ -21,10 +21,10 @@ class FormOptionsHelperTest < ActionView::TestCase
   end
 
   def setup
-    @fake_timezones = %w(A B C D E).inject([]) do |zones, id|
+    @fake_timezones = %w(A B C D E).map do |id|
       tz = TZInfo::Timezone.loaded_zones[id] = stub(:name => id, :to_s => id)
       ActiveSupport::TimeZone.stubs(:[]).with(id).returns(tz)
-      zones << tz
+      tz
     end
     ActiveSupport::TimeZone.stubs(:all).returns(@fake_timezones)
   end
@@ -351,7 +351,7 @@ class FormOptionsHelperTest < ActionView::TestCase
     )
   end
 
-  def test_time_zone_options_no_parms
+  def test_time_zone_options_no_params
     opts = time_zone_options_for_select
     assert_dom_equal "<option value=\"A\">A</option>\n" +
                  "<option value=\"B\">B</option>\n" +
-- 
cgit v1.2.3