Prefer double quoted string literals (#13949)

Fixes a rubocop warning
This commit is contained in:
Daniel Uber 2021-06-10 01:02:28 -05:00 committed by GitHub
parent 1bf27b0331
commit 727aba3054
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,7 @@
require "rails_helper"
RSpec.describe "Stories::PinnedArticlesController", type: :request do
let(:headers) { { 'content-type': "application/json" } }
let(:headers) { { "content-type": "application/json" } }
let(:user) { create(:user) }
let(:admin) { create(:user, :admin) }
let(:article) { create(:article) }