Commit 93e216e6 authored by Robert Speicher's avatar Robert Speicher

Merge branch '28857-followup-fix-pages-test' into 'master'

Fix a test that is going to break, that has not broken yet

See merge request gitlab-org/gitlab-ce!17966
parents d6abee51 1f04248c
......@@ -244,10 +244,11 @@ feature 'Pages' do
end
context 'setting could not be updated' do
let(:service) { instance_double('Projects::UpdateService') }
before do
allow_any_instance_of(Projects::UpdateService)
.to receive(:execute)
.and_return(status: :error)
allow(Projects::UpdateService).to receive(:new).and_return(service)
allow(service).to receive(:execute).and_return(status: :error)
end
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