提交 b8715643 编写于 作者: J James Lopez

fix service spec

上级 3bff8da8
......@@ -258,7 +258,7 @@ class Service < ActiveRecord::Base
return false unless update_attributes(service_params)
if service_params[:active]
PropagateProjectServiceWorker.perform_async(service_params[:id])
PropagateProjectServiceWorker.perform_async(id)
end
true
......
......@@ -258,7 +258,7 @@ describe Service, models: true do
describe "#update_and_propagate" do
let(:project) { create(:empty_project) }
let!(:service) do
RedmineService.new(
RedmineService.create(
project: project,
active: false,
properties: {
......@@ -270,7 +270,7 @@ describe Service, models: true do
end
it 'updates the service params successfully and calls the propagation worker' do
expect(PropagateProjectServiceWorker).to receive(:perform_async)
expect(PropagateProjectServiceWorker).to receive(:perform_async).with(service.id)
expect(service.update_and_propagate(active: true)).to be true
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册