Skip to content

Commit

Permalink
Use " vs ' consistently
Browse files Browse the repository at this point in the history
  • Loading branch information
agrare committed Jun 13, 2023
1 parent 22286e1 commit 1114d2a
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@
raw_cloud_networks
end

describe 'cloud network actions' do
describe "cloud network actions" do
context ".create" do
it 'catches errors from provider' do
it "catches errors from provider" do
expect(service).to receive_message_chain(:networks, :new).and_raise(bad_request)
expect do
ems_network.create_cloud_network(:cloud_tenant => tenant)
Expand All @@ -52,7 +52,7 @@
cloud_network.update_cloud_network(options)
end

it 'catches errors from provider' do
it "catches errors from provider" do
expect(service).to receive(:update_network).and_raise(bad_request)
expect { cloud_network.update_cloud_network({}) }.to raise_error(MiqException::MiqNetworkUpdateError)
end
Expand All @@ -66,7 +66,7 @@
cloud_network.delete_cloud_network({})
end

it 'catches errors from provider' do
it "catches errors from provider" do
expect(service).to receive(:delete_network).and_raise(bad_request)
expect { cloud_network.delete_cloud_network({}) }.to raise_error(MiqException::MiqNetworkDeleteError)
end
Expand Down

0 comments on commit 1114d2a

Please sign in to comment.