Fix race-condition in test_utc_time_format

This commit is contained in:
Holger Just 2011-10-16 20:46:57 +02:00
parent 61b9939be3
commit a107202a04

View File

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