Prevent false positive for raised error

This commit is contained in:
Sebastian Serth
2022-08-09 11:42:06 +02:00
parent fa27e3923d
commit a9039a8019

View File

@ -316,7 +316,7 @@ describe Runner::Strategy::Poseidon do
let(:response_status) { 404 } let(:response_status) { 404 }
it 'raises an error' do it 'raises an error' do
expect { action.call }.not_to raise_error(Runner::Error::RunnerNotFound) expect { action.call }.not_to raise_error
end end
end end