summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2011-11-16 17:42:56 -0800
committerAaron Patterson <aaron.patterson@gmail.com>2011-11-16 17:42:56 -0800
commit8be283ffb02e95584a516cb54715d019c5046365 (patch)
treeaad56a8f45bcda981cfb92686e893fa986a2443f /test
parent312965d9bc36bcff748745b6d19a57d6cf4d0ecc (diff)
downloadpsych-8be283ffb02e95584a516cb54715d019c5046365.zip
infinite loop seems fixed, so I can uncomment this assertion
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 39e38f7..977aae0 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