1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

Merge pull request #333 from drnic/correct-variable-name

use correct variable name in test description
This commit is contained in:
Wesley Beary 2011-05-26 20:39:34 -07:00
commit ea9c82c6f1

View file

@ -26,11 +26,11 @@ Shindo.tests('AWS::Compute | address requests', ['aws']) do
AWS[:compute].describe_addresses.body
end
tests("#describe_addresses('public-ip' => #{@public_Ip}')").formats(@addresses_format) do
tests("#describe_addresses('public-ip' => #{@public_ip}')").formats(@addresses_format) do
AWS[:compute].describe_addresses('public-ip' => @public_ip).body
end
tests("#associate_addresses('#{@server.identity}', '#{@public_Ip}')").formats(AWS::Compute::Formats::BASIC) do
tests("#associate_addresses('#{@server.identity}', '#{@public_ip}')").formats(AWS::Compute::Formats::BASIC) do
AWS[:compute].associate_address(@server.identity, @public_ip).body
end