aboutsummaryrefslogtreecommitdiffstats
path: root/test/net/imap/test_imap_response_parser.rb
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-02-23 02:38:18 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-02-23 02:38:18 +0000
commit0728a4ed706119abe392f330dc31f890964ce885 (patch)
tree0e6d2d18c2c19f4717c0f620e1ce4f0dbd604b1b /test/net/imap/test_imap_response_parser.rb
parent511c2a1647780dc58772c4031e2250c17425863b (diff)
downloadruby-0728a4ed706119abe392f330dc31f890964ce885.tar.gz
* test/net/imap/test_imap.rb: remove unused variables.
* test/net/imap/test_imap_response_parser.rb: ditto. * test/net/pop/test_pop.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45149 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/net/imap/test_imap_response_parser.rb')
-rw-r--r--test/net/imap/test_imap_response_parser.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/net/imap/test_imap_response_parser.rb b/test/net/imap/test_imap_response_parser.rb
index cecc015133..3dc9d972db 100644
--- a/test/net/imap/test_imap_response_parser.rb
+++ b/test/net/imap/test_imap_response_parser.rb
@@ -120,7 +120,7 @@ EOF
def test_msg_att_parse_error
parser = Net::IMAP::ResponseParser.new
e = assert_raise(Net::IMAP::ResponseParseError) {
- response = parser.parse(<<EOF.gsub(/\n/, "\r\n").taint)
+ parser.parse(<<EOF.gsub(/\n/, "\r\n").taint)
* 123 FETCH (UNKNOWN 92285)
EOF
}