[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:
Charles Oliver Nutter 2021-12-01 09:13:13 -06:00 committed by Hiroshi SHIBATA
parent 37ea07d59b
commit a37051ef3b
No known key found for this signature in database
GPG Key ID: F9CF13417264FAC2

View File

@ -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)