1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

test/net/imap/test_imap_response_parser.rb: fixed test_resp_text_code.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26602 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
shugo 2010-02-06 14:11:21 +00:00
parent d724d5e771
commit 3b21e88faa

View file

@ -61,6 +61,6 @@ EOF
response = parser.parse(<<EOF.gsub(/\n/, "\r\n").taint)
* OK [CLOSED] Previous mailbox closed.
EOF
assert_equal nil, response
assert_equal "CLOSED", response.data.code.name
end
end