summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authortenderlove <tenderlove@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-11-17 01:42:54 +0000
committertenderlove <tenderlove@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-11-17 01:42:54 +0000
commitb5907f7d46d74dda26479a4ed4f8b78a6d51dcf9 (patch)
tree9b7e3a33df31cee5425ecc7ce87feb5b7e4b01a8 /test
parent9660bcfc4390dcf49b213877a6b1b58423c1dfdb (diff)
infinite loop seems to be fixed, so I can uncomment this assertion.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33777 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/psych/test_struct.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/test/psych/test_struct.rb b/test/psych/test_struct.rb
index 39e38f7dfd..977aae08ba 100644
--- a/test/psych/test_struct.rb
+++ b/test/psych/test_struct.rb
@@ -24,9 +24,7 @@ module Psych
loaded = Psych.load(Psych.dump(ss))
assert_instance_of(StructSubclass, loaded.foo)
- # FIXME: This seems to cause an infinite loop. wtf. Must report a bug
- # in ruby.
- # assert_equal(ss, loaded)
+ assert_equal(ss, loaded)
end
def test_roundtrip