From fe99d6f3042797ea3a9a5d6eeee1eae6136ae96c Mon Sep 17 00:00:00 2001 From: akr Date: Sat, 15 Dec 2007 11:20:45 +0000 Subject: avoid ruby -d test/ruby/test_marshal.rb output binary marshaled data. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14241 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/marshaltestlib.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/ruby') 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 -- cgit