summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2020-12-04 19:34:06 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2020-12-15 17:43:35 +0900
commitc30183311113908e697d05f873264aad246f24c8 (patch)
tree90c90a8e8d2406d47047ce9a169330053b8a8bc0
parent8f7ddba3cd343c2bada3c31c9660c63f0c6df114 (diff)
downloadjson-c30183311113908e697d05f873264aad246f24c8.tar.gz
SortedSet was removed at a3db08d7b6ff119223f77e3df00b4f6deac971e2
-rw-r--r--tests/json_addition_test.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/json_addition_test.rb b/tests/json_addition_test.rb
index 61625f8..e95ace8 100644
--- a/tests/json_addition_test.rb
+++ b/tests/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