aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-01-19 19:32:21 -0200
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-01-19 19:32:33 -0200
commit239a97af552d5e83c36d90c430330f8f9036d345 (patch)
treed13eede212da72180c449db36a4591053a93dbd7 /activesupport/test
parentb718998f3e8e6f3d01ad138e40f08fbcc3736285 (diff)
downloadrails-239a97af552d5e83c36d90c430330f8f9036d345.tar.gz
rails-239a97af552d5e83c36d90c430330f8f9036d345.tar.bz2
rails-239a97af552d5e83c36d90c430330f8f9036d345.zip
Fix failing test about date.order translation values
Introduced in b718998f3e8e6f3d01ad138e40f08fbcc3736285.
Diffstat (limited to 'activesupport/test')
-rw-r--r--activesupport/test/i18n_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/test/i18n_test.rb b/activesupport/test/i18n_test.rb
index ddbba444cf..5ef59b6e6b 100644
--- a/activesupport/test/i18n_test.rb
+++ b/activesupport/test/i18n_test.rb
@@ -62,7 +62,7 @@ class I18nTest < ActiveSupport::TestCase
end
def test_date_order
- assert_equal [:year, :month, :day], I18n.translate(:'date.order')
+ assert_equal %w(year month day), I18n.translate(:'date.order')
end
def test_time_am