modified test.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35816 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
tadf 2012-05-27 01:05:31 +00:00
parent 83d8d057c2
commit 9f698ff1d5

View File

@ -79,7 +79,7 @@ class TestDateStrftime < Test::Unit::TestCase
assert_equal(f2, d.strftime(f2), [f2, s].inspect)
end
case f[-1,1]
when 'd', 'e', 'H', 'I', 'm', 'M', 'S', 'u', 'U', 'V', 'w', 'W', 'y'
when 'd', 'e', 'H', 'k', 'I', 'l', 'm', 'M', 'S', 'u', 'U', 'V', 'w', 'W', 'y'
f2 = f.sub(/\A%/, '%O')
assert_equal(s[0], d.strftime(f2), [f2, s].inspect)
else