test/requests/storage/test_delete_object.rb in gitlab-fog-azure-rm-1.8.0 vs test/requests/storage/test_delete_object.rb in gitlab-fog-azure-rm-1.9.0

- old
+ new

@@ -3,15 +3,15 @@ # Storage Blob Class class TestDeleteObject < Minitest::Test # This class posesses the test cases for the requests of deleting storage blobs. def setup Fog.mock! - @mock_service = Fog::Storage::AzureRM.new(storage_account_credentials) + @mock_service = Fog::AzureRM::Storage.new(storage_account_credentials) Fog.unmock! @mocked_response = mocked_storage_http_error @mocked_not_found_response = mocked_storage_http_not_found_error - @service = Fog::Storage::AzureRM.new(storage_account_credentials) + @service = Fog::AzureRM::Storage.new(storage_account_credentials) @blob_client = @service.instance_variable_get(:@blob_client) end def test_delete_object_success @blob_client.stub :delete_blob, true do