summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-02-02 12:38:41 +0000
committerkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-02-02 12:38:41 +0000
commit14ccf1262a5432f1d10d49d9adfadf0a81c1e5ef (patch)
tree39d6a2dbd02bec51b4c9ba5398512ef835c11d08 /test
parentc3d27b59792a6fc8e7bcf04cac72bb6be6ce61df (diff)
Add class name to assert messages
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57503 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_io.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ruby/test_io.rb b/test/ruby/test_io.rb
index 9b0962f2a2..ca3f1e2d3b 100644
--- a/test/ruby/test_io.rb
+++ b/test/ruby/test_io.rb
@@ -3520,8 +3520,8 @@ __END__
assert_equal before, after,
'no strings left over after write [ruby-core:78898] [Bug #13085]'
assert_not_predicate buf, :frozen?, 'no inadvertant freeze'
- assert_equal buf.bytesize, n, 'write wrote expected size'
- assert_equal s, n, 'syswrite wrote expected size'
+ assert_equal buf.bytesize, n, 'IO#write wrote expected size'
+ assert_equal s, n, 'IO#syswrite wrote expected size'
end
end
end