提交 dc3e55d1 编写于 作者: J Jeremy Kemper

TimeZone#to_s uses UTC rather than GMT. References #1689.


git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8370 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
上级 bcbcc026
*SVN*
* TimeZone#to_s uses UTC rather than GMT. #1689 [Chu Yeow]
* Refactor of Hash#symbolize_keys! to use Hash#replace. Closes #10420 [ReinH]
* Fix HashWithIndifferentAccess#to_options! so it doesn't clear the options hash. Closes #10419 [ReinH]
......
......@@ -68,7 +68,7 @@ def <=>(zone)
# Returns a textual representation of this time zone.
def to_s
"(GMT#{formatted_offset}) #{name}"
"(UTC#{formatted_offset}) #{name}"
end
@@zones = nil
......
......@@ -67,7 +67,7 @@ def test_zone_compare
def test_to_s
zone = TimeZone.create( "Test", 4200 )
assert_equal "(GMT+01:10) Test", zone.to_s
assert_equal "(UTC+01:10) Test", zone.to_s
end
def test_all_sorted
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册