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

fixed a typo in vm_power_on_tests.rb

This commit is contained in:
Eric Stonfer 2012-02-01 10:03:36 -05:00
parent fdcc2a12de
commit 47767bbdb5

View file

@ -5,7 +5,7 @@ Shindo.tests('Fog::Compute[:vsphere] | vm_power_on request', ['vsphere']) do
powered_off_vm = nil
tests('The response should') do
response = compute.vm_power_off('instance_uuid' => powered_off_vm)
response = compute.vm_power_on('instance_uuid' => powered_off_vm)
test('be a kind of Hash') { response.kind_of? Hash }
test('should have a task_state key') { response.has_key? 'task_state' }
end