From f3945617bd2ed8f4282bc21023f0aea1aa166654 Mon Sep 17 00:00:00 2001 From: akr Date: Tue, 25 Dec 2007 04:24:21 +0000 Subject: * test/ruby/test_io_m17n.rb (test_write_noenc): don't mix text and binary mode. [ruby-dev:32743] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14656 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_io_m17n.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/ruby') diff --git a/test/ruby/test_io_m17n.rb b/test/ruby/test_io_m17n.rb index e90d1dd916..d3de901f6f 100644 --- a/test/ruby/test_io_m17n.rb +++ b/test/ruby/test_io_m17n.rb @@ -300,14 +300,14 @@ EOT end def test_write_noenc - src = "\xc2\xa1\n" + src = "\xc2\xa1\n".force_encoding("ascii-8bit") with_tmpdir { open('tmp', "w") {|f| ENCS.each {|enc| f.write src.dup.force_encoding(enc) } } - open('tmp', 'rb') {|f| + open('tmp', 'r:ascii-8bit') {|f| assert_equal(src*ENCS.length, f.read) } } -- cgit v1.2.3