Commit ee77d3df authored by Vitali Tatarintev's avatar Vitali Tatarintev

Replace double quotes to single quotes

parent 0f52c1ab
......@@ -18,7 +18,7 @@ describe Gitlab::SlashCommands::IssueComment do
it 'does not allow the user to comment' do
expect(subject[:response_type]).to be(:ephemeral)
expect(subject[:text]).to match("not found")
expect(subject[:text]).to match('not found')
expect(issue.reload.notes.count).to be_zero
end
end
......@@ -56,7 +56,7 @@ describe Gitlab::SlashCommands::IssueComment do
it "returns not found" do
expect(subject[:response_type]).to be(:ephemeral)
expect(subject[:text]).to match("not found")
expect(subject[:text]).to match('not found')
end
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