summaryrefslogtreecommitdiff
path: root/test/net/protocol/test_protocol.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/net/protocol/test_protocol.rb')
-rw-r--r--test/net/protocol/test_protocol.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/net/protocol/test_protocol.rb b/test/net/protocol/test_protocol.rb
index 048526b1c7..b47187b34b 100644
--- a/test/net/protocol/test_protocol.rb
+++ b/test/net/protocol/test_protocol.rb
@@ -6,7 +6,7 @@ require "stringio"
class TestProtocol < Test::Unit::TestCase
def test_should_properly_dot_stuff_period_with_no_endline
bug9627 = '[ruby-core:61441] [Bug #9627]'
- sio = StringIO.new("".dup)
+ sio = StringIO.new
imio = Net::InternetMessageIO.new(sio)
email = "To: bob@aol.com\nlook, a period with no endline\n."
imio.write_message(email)
@@ -15,12 +15,12 @@ class TestProtocol < Test::Unit::TestCase
def test_each_crlf_line
assert_output('', '') do
- sio = StringIO.new("".dup)
+ sio = StringIO.new
imio = Net::InternetMessageIO.new(sio)
assert_equal(23, imio.write_message("\u3042\r\u3044\n\u3046\r\n\u3048"))
assert_equal("\u3042\r\n\u3044\r\n\u3046\r\n\u3048\r\n.\r\n", sio.string)
- sio = StringIO.new("".dup)
+ sio = StringIO.new
imio = Net::InternetMessageIO.new(sio)
assert_equal(8, imio.write_message("\u3042\r"))
assert_equal("\u3042\r\n.\r\n", sio.string)