From b16f9112ed8b85552db2b04821f1ec338e07913e Mon Sep 17 00:00:00 2001 From: kazu Date: Mon, 3 Apr 2017 12:30:04 +0000 Subject: Fix arguments order of IO#pwrite git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58241 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_io.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/ruby') diff --git a/test/ruby/test_io.rb b/test/ruby/test_io.rb index d6cbf205e9..ac7570a2b3 100644 --- a/test/ruby/test_io.rb +++ b/test/ruby/test_io.rb @@ -3541,7 +3541,7 @@ __END__ def test_pwrite make_tempfile { |t| open(t.path, IO::RDWR) do |f| - assert_equal(3, f.pwrite(4, "ooo")) + assert_equal(3, f.pwrite("ooo", 4)) assert_equal("ooo", f.pread(3, 4)) end } -- cgit v1.2.3