We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7a5ad2 commit afd7d5bCopy full SHA for afd7d5b
spec/ruby/core/marshal/dump_spec.rb
@@ -286,8 +286,10 @@ def _dump(level)
286
].should be_computed_by(:dump)
287
end
288
289
- it "uses object links for objects repeatedly dumped" do
290
- Marshal.dump([0.0, 0.0]).should == "\x04\b[\af\x060@\x06" # @\x06 is a link to the float value
+ quarantine! do # fails on i686 with 'Expected "\x04\b[\af\x060f\x060" == "\x04\b[\af\x060@\x06" to be truthy but was false'
+ it "uses object links for objects repeatedly dumped" do
291
+ Marshal.dump([0.0, 0.0]).should == "\x04\b[\af\x060@\x06" # @\x06 is a link to the float value
292
+ end
293
294
295
0 commit comments