From 7ff9008f3e533f2e0442c7a07ef1c67c119822ea Mon Sep 17 00:00:00 2001 From: Hiroyuki Sato Date: Sun, 23 Jul 2017 21:30:10 +0900 Subject: Change double quotes to single quotes --- spec/models/wiki_page_spec.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'spec/models/wiki_page_spec.rb') diff --git a/spec/models/wiki_page_spec.rb b/spec/models/wiki_page_spec.rb index 4f462044532..220b70503f0 100644 --- a/spec/models/wiki_page_spec.rb +++ b/spec/models/wiki_page_spec.rb @@ -209,17 +209,17 @@ describe WikiPage, models: true do end end - context "with same last commit sha" do - it "returns true" do + context 'with same last commit sha' do + it 'returns true' do last_commit_sha = @page.commit.sha - expect(@page.update("more content", :markdown, nil, last_commit_sha)).to be_truthy + expect(@page.update('more content', :markdown, nil, last_commit_sha)).to be_truthy end end - context "with different last commit sha" do - it "raises exception" do - last_commit_sha = "xxx" - expect { @page.update("more content", :markdown, nil, last_commit_sha) }.to raise_error(WikiPage::PageChangedError) + context 'with different last commit sha' do + it 'raises exception' do + last_commit_sha = 'xxx' + expect { @page.update('more content', :markdown, nil, last_commit_sha) }.to raise_error(WikiPage::PageChangedError) end end end -- cgit v1.2.3