diff --git a/tests/ovirt/requests/compute/list_storage_domains_tests.rb b/tests/ovirt/requests/compute/list_storage_domains_tests.rb index 3e54c4515..bea9dce56 100644 --- a/tests/ovirt/requests/compute/list_storage_domains_tests.rb +++ b/tests/ovirt/requests/compute/list_storage_domains_tests.rb @@ -7,7 +7,7 @@ Shindo.tests('Fog::Compute[:ovirt] | storage_domains request', ['ovirt']) do response = compute.storage_domains tests("The response data format ...") do test("it should be a kind of Array") { response.kind_of? Array } - test("be a kind of Hash") { response.first.kind_of? Hash } + test("be a kind of OVIRT::StorageDomain") { response.first.kind_of? OVIRT::StorageDomain } end end end