aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorshugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-21 00:30:28 +0000
committershugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-21 00:30:28 +0000
commit9b4d4a8a4826e13cc8794b6a478b4a58504b126f (patch)
treeb72e1f3aaa227e53e6d6d556ac62f450204fcd04 /test
parent0cae739f2d3038d8d2ac6e8ee51a9a4d926dc9d5 (diff)
downloadruby-9b4d4a8a4826e13cc8794b6a478b4a58504b126f.tar.gz
* strftime.c (rb_strftime): return "UTC" instead of "GMT".
* test/ruby/test_time.rb (test_strftime): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18746 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_time.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_time.rb b/test/ruby/test_time.rb
index 049693037d..a84cbd9ec6 100644
--- a/test/ruby/test_time.rb
+++ b/test/ruby/test_time.rb
@@ -371,7 +371,7 @@ class TestTime < Test::Unit::TestCase
assert_equal("00:00:00", T2000.strftime("%X"))
assert_equal("00", T2000.strftime("%y"))
assert_equal("2000", T2000.strftime("%Y"))
- assert(["GMT", "UTC"].include?(T2000.strftime("%Z")))
+ assert_equal("UTC", T2000.strftime("%Z"))
assert_equal("%", T2000.strftime("%%"))
assert_equal("", T2000.strftime(""))