diff options
author | Hiroshi SHIBATA <[email protected]> | 2020-12-04 19:34:06 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2020-12-04 19:36:12 +0900 |
commit | b06ffce4aef002dc47c3c5968181230e7ab8d7cc (patch) | |
tree | 117c96acb0b9e1f81acfbd4a1585e054ca8a0ec2 /test/json/json_addition_test.rb | |
parent | 1804c3368cf4a94791fafa9701f79a2e6f76d5d8 (diff) |
SortedSet was removed at a3db08d7b6ff119223f77e3df00b4f6deac971e2
Diffstat (limited to 'test/json/json_addition_test.rb')
-rw-r--r-- | test/json/json_addition_test.rb | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/json/json_addition_test.rb b/test/json/json_addition_test.rb index 61625f89e2..e95ace8375 100644 --- a/test/json/json_addition_test.rb +++ b/test/json/json_addition_test.rb @@ -195,9 +195,5 @@ class JSONAdditionTest < Test::Unit::TestCase def test_set s = Set.new([:a, :b, :c, :a]) assert_equal s, JSON.parse(JSON(s), :create_additions => true) - ss = SortedSet.new([:d, :b, :a, :c]) - ss_again = JSON.parse(JSON(ss), :create_additions => true) - assert_kind_of ss.class, ss_again - assert_equal ss, ss_again end end |