Fix clusters_controller_spec (#42643)

This commit is contained in:
Dylan Griffith 2018-02-23 10:31:19 +11:00
parent 3b320d675f
commit 69adf79234
1 changed files with 2 additions and 2 deletions

View File

@ -92,8 +92,8 @@ describe Projects::ClustersController do
expect(response).to match_response_schema('cluster_status')
end
it 'invokes sync_details on each application' do
expect_any_instance_of(Clusters::Applications::Ingress).to receive(:sync_details)
it 'invokes schedule_status_update on each application' do
expect_any_instance_of(Clusters::Applications::Ingress).to receive(:schedule_status_update)
go
end