зеркало из https://github.com/github/ruby.git
[flori/json] Remove unknown keyword arg from DateTime.parse
This snuck in while addding tests for the `create_additions` feature. Caught by JRuby when we added the `limit` option to the Date/DateTime parsing methods, which causes this to be rejected as an unknown keyword. https://github.com/flori/json/commit/b1007dff66
This commit is contained in:
Родитель
37ea07d59b
Коммит
a37051ef3b
|
@ -165,7 +165,7 @@ class JSONAdditionTest < Test::Unit::TestCase
|
|||
|
||||
def test_utc_datetime
|
||||
now = Time.now
|
||||
d = DateTime.parse(now.to_s, :create_additions => true) # usual case
|
||||
d = DateTime.parse(now.to_s) # usual case
|
||||
assert_equal d, parse(d.to_json, :create_additions => true)
|
||||
d = DateTime.parse(now.utc.to_s) # of = 0
|
||||
assert_equal d, parse(d.to_json, :create_additions => true)
|
||||
|
|
Загрузка…
Ссылка в новой задаче