summaryrefslogtreecommitdiff
path: root/test/net
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-12-07 13:12:10 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-12-07 13:12:10 +0000
commit4ec63ef2450d57e368aeef52fe30f95c1feda07e (patch)
tree65eef8be68a4153af7cf5bd579fc3705879a022f /test/net
parent5bf72d1fa60e195641cb9347c5e5bd98e85da72e (diff)
fix typo: not response.attr.data, but response.data.attr.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30119 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/net')
-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 fca71e2436..599747dd76 100644
--- a/test/net/imap/test_imap_response_parser.rb
+++ b/test/net/imap/test_imap_response_parser.rb
@@ -61,7 +61,7 @@ EOF
response = parser.parse(<<EOF.gsub(/\n/, "\r\n").taint)
* XLIST (\\Inbox) "." "INBOX"
EOF
- assert_equal [:Inbox], response.attr.data
+ assert_equal [:Inbox], response.data.attr
end