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

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
This commit is contained in:
naruse 2010-12-07 13:12:10 +00:00
parent 5bf72d1fa6
commit 4ec63ef245

View file

@ -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