Commit 1f04248c authored by Nick Thomas's avatar Nick Thomas

Fix a spec that will break in EE

parent 757da4dd
...@@ -244,10 +244,11 @@ feature 'Pages' do ...@@ -244,10 +244,11 @@ feature 'Pages' do
end end
context 'setting could not be updated' do context 'setting could not be updated' do
let(:service) { instance_double('Projects::UpdateService') }
before do before do
allow_any_instance_of(Projects::UpdateService) allow(Projects::UpdateService).to receive(:new).and_return(service)
.to receive(:execute) allow(service).to receive(:execute).and_return(status: :error)
.and_return(status: :error)
end end
scenario 'tries to change the setting' do scenario 'tries to change the setting' 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