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

Merge pull request #725 from estonfer/fix_vsphere_shindo

fixed a typo in vm_power_on_tests.rb
This commit is contained in:
Wesley Beary 2012-02-01 09:30:01 -08:00
commit 3941e8109f

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