diff options
author | gbuesing <gbuesing@gmail.com> | 2008-05-25 11:56:29 -0500 |
---|---|---|
committer | gbuesing <gbuesing@gmail.com> | 2008-05-25 11:56:29 -0500 |
commit | f88267d532ecbfebb66b95863a4875b65507ddf3 (patch) | |
tree | 105575be266671eecb054406772149ab950d8f2e /activesupport/test | |
parent | 98dc582742779081e71e697fcdf8d9ae2b421b16 (diff) | |
download | rails-f88267d532ecbfebb66b95863a4875b65507ddf3.tar.gz rails-f88267d532ecbfebb66b95863a4875b65507ddf3.tar.bz2 rails-f88267d532ecbfebb66b95863a4875b65507ddf3.zip |
TimeZone#to_s shows offset as GMT instead of UTC, because GMT will be more familiar to end users (see time zone selects used by Windows OS, google.com and yahoo.com.) Reverts [8370]
Diffstat (limited to 'activesupport/test')
-rw-r--r-- | activesupport/test/time_zone_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/test/time_zone_test.rb b/activesupport/test/time_zone_test.rb index 3757ddcedb..f3069b589b 100644 --- a/activesupport/test/time_zone_test.rb +++ b/activesupport/test/time_zone_test.rb @@ -252,7 +252,7 @@ class TimeZoneTest < Test::Unit::TestCase end def test_to_s - assert_equal "(UTC+03:00) Moscow", TimeZone['Moscow'].to_s + assert_equal "(GMT+03:00) Moscow", TimeZone['Moscow'].to_s end def test_all_sorted |