summaryrefslogtreecommitdiffstats
path: root/test/ruby
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/marshaltestlib.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/marshaltestlib.rb b/test/ruby/marshaltestlib.rb
index f334945c8..211bbd879 100644
--- a/test/ruby/marshaltestlib.rb
+++ b/test/ruby/marshaltestlib.rb
@@ -17,7 +17,7 @@ module MarshalTestLib
def marshaltest(o1)
str = encode(o1)
- print str, "\n" if $DEBUG
+ print str.dump, "\n" if $DEBUG
o2 = decode(str)
o2
end