Commit 02229f05 authored by Nick Thomas's avatar Nick Thomas

CE->EE: Fix conflicts in spec/services/wiki_pages/update_service_spec.rb

parent d6b121b7
...@@ -25,14 +25,9 @@ describe WikiPages::UpdateService do ...@@ -25,14 +25,9 @@ describe WikiPages::UpdateService do
updated_page = service.execute(page) updated_page = service.execute(page)
expect(updated_page).to be_valid expect(updated_page).to be_valid
<<<<<<< HEAD
expect(updated_page).to have_attributes(message: opts[:message], content: opts[:content], format: opts[:format].to_sym) expect(updated_page).to have_attributes(message: opts[:message], content: opts[:content], format: opts[:format].to_sym)
=======
expect(updated_page.message).to eq(opts[:message])
expect(updated_page.content).to eq(opts[:content])
expect(updated_page.format).to eq(opts[:format].to_sym)
expect(updated_page.title).to eq(opts[:title]) expect(updated_page.title).to eq(opts[:title])
>>>>>>> upstream/master
end end
it 'executes webhooks' do it 'executes webhooks' do
......
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