Change double quotes to single quotes

This commit is contained in:
Hiroyuki Sato 2017-07-23 21:30:10 +09:00
parent 9b25bbc45d
commit 7ff9008f3e
1 changed files with 7 additions and 7 deletions

View File

@ -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