diff options
| author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-15 11:20:45 +0000 |
|---|---|---|
| committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-15 11:20:45 +0000 |
| commit | fe99d6f3042797ea3a9a5d6eeee1eae6136ae96c (patch) | |
| tree | febaabdbd1183c20b68dcb383656a447db3db0fc /test/ruby | |
| parent | 408df9fc63dd3fc00422145c414fde91563d45f1 (diff) | |
| download | ruby-fe99d6f3042797ea3a9a5d6eeee1eae6136ae96c.tar.gz ruby-fe99d6f3042797ea3a9a5d6eeee1eae6136ae96c.tar.xz ruby-fe99d6f3042797ea3a9a5d6eeee1eae6136ae96c.zip | |
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
Diffstat (limited to 'test/ruby')
| -rw-r--r-- | test/ruby/marshaltestlib.rb | 2 |
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 |
