aboutsummaryrefslogtreecommitdiffstats
path: root/test/ruby/test_file.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/test_file.rb')
-rw-r--r--test/ruby/test_file.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_file.rb b/test/ruby/test_file.rb
index 4947e081c5..e326b97b07 100644
--- a/test/ruby/test_file.rb
+++ b/test/ruby/test_file.rb
@@ -88,7 +88,7 @@ class TestFile < Test::Unit::TestCase
assert_nil(f.getc)
open(f.path, "w") {|g| g.print "a" }
result = []
- f.each_byte {|b| result << b }
+ f.each_byte {|b| result << b.chr }
assert_equal([?a], result)
end