summaryrefslogtreecommitdiff
path: root/test/json
diff options
context:
space:
mode:
Diffstat (limited to 'test/json')
-rw-r--r--test/json/json_addition_test.rb4
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