Add missing double quotes

We overlooked a few single quotes while we changed thousands of them.
This commit is contained in:
Javi Martín
2019-03-25 13:22:35 +01:00
parent 1b76a34074
commit 2b4e1cf358
15 changed files with 296 additions and 296 deletions

View File

@@ -71,19 +71,19 @@ describe GraphqlController, type: :request do
let(:query_string) { "{ proposal(id: #{proposal.id}) { title } }" }
specify "when absent" do
get '/graphql', query: query_string
get "/graphql", query: query_string
expect(response).to have_http_status(:ok)
end
specify "when specified as the 'null' string" do
get '/graphql', query: query_string, variables: 'null'
get "/graphql", query: query_string, variables: "null"
expect(response).to have_http_status(:ok)
end
specify "when specified as an empty string" do
get '/graphql', query: query_string, variables: ''
get "/graphql", query: query_string, variables: ""
expect(response).to have_http_status(:ok)
end