Commit 95c8b31d authored by Luke Duncalfe's avatar Luke Duncalfe

Convert single quotes to double quotes

parent ce0ba3eb
...@@ -9,7 +9,7 @@ describe "uploading designs" do ...@@ -9,7 +9,7 @@ describe "uploading designs" do
let(:current_user) { create(:user) } let(:current_user) { create(:user) }
let(:issue) { create(:issue) } let(:issue) { create(:issue) }
let(:project) { issue.project } let(:project) { issue.project }
let(:files) { [fixture_file_upload('spec/fixtures/dk.png')] } let(:files) { [fixture_file_upload("spec/fixtures/dk.png")] }
let(:variables) { {} } let(:variables) { {} }
let(:mutation) do let(:mutation) do
...@@ -35,7 +35,7 @@ describe "uploading designs" do ...@@ -35,7 +35,7 @@ describe "uploading designs" do
expect(graphql_errors).to be_present expect(graphql_errors).to be_present
end end
it 'succeeds (backward compatibility)' do it "succeeds (backward compatibility)" do
post_graphql_mutation(mutation, current_user: current_user) post_graphql_mutation(mutation, current_user: current_user)
expect(graphql_errors).not_to be_present expect(graphql_errors).not_to be_present
...@@ -57,8 +57,8 @@ describe "uploading designs" do ...@@ -57,8 +57,8 @@ describe "uploading designs" do
post_graphql_mutation(mutation, current_user: current_user) post_graphql_mutation(mutation, current_user: current_user)
expect(mutation_response).to include( expect(mutation_response).to include(
'designs' => a_collection_containing_exactly( "designs" => a_collection_containing_exactly(
a_hash_including('filename' => 'dk.png') a_hash_including("filename" => "dk.png")
) )
) )
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment