Browse Source

Fixes potential test failure.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5498 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/1.2.0
Jean-Philippe Lang 13 years ago
parent
commit
f0dfff4866
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      test/unit/lib/redmine/i18n_test.rb

+ 3
- 3
test/unit/lib/redmine/i18n_test.rb View File

@@ -101,11 +101,11 @@ class Redmine::I18nTest < ActiveSupport::TestCase
def test_utc_time_format
set_language_if_valid 'en'
now = Time.now.utc
now = Time.now
Setting.date_format = '%d %m %Y'
Setting.time_format = '%H %M'
assert_equal Time.now.strftime('%d %m %Y %H %M'), format_time(now)
assert_equal Time.now.strftime('%H %M'), format_time(now, false)
assert_equal now.strftime('%d %m %Y %H %M'), format_time(now.utc)
assert_equal now.strftime('%H %M'), format_time(now.utc, false)
end
def test_number_to_human_size_for_each_language

Loading…
Cancel
Save