]> source.dussan.org Git - redmine.git/commitdiff
Add debug info for random test failure.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Fri, 9 Oct 2015 19:49:54 +0000 (19:49 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Fri, 9 Oct 2015 19:49:54 +0000 (19:49 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@14669 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/unit/lib/redmine/i18n_test.rb

index a2b81ab146caa711300bf1ef7905c929fa9beee4..67823977db862c855e168f6035dad8399cfbd313 100644 (file)
@@ -118,8 +118,8 @@ class Redmine::I18nTest < ActiveSupport::TestCase
     set_language_if_valid 'en'
     now = Time.now
     with_settings :date_format => '%d %m %Y', :time_format => '%H %M' do
-      assert_equal now.strftime('%d %m %Y %H %M'), format_time(now.utc)
-      assert_equal now.strftime('%H %M'), format_time(now.utc, false)
+      assert_equal now.localtime.strftime('%d %m %Y %H %M'), format_time(now.utc), "User time zone was #{User.current.time_zone}"
+      assert_equal now.localtime.strftime('%H %M'), format_time(now.utc, false)
     end
   end