summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Griffith <dyl.griffith@gmail.com>2018-02-23 10:31:19 +1100
committerDylan Griffith <dyl.griffith@gmail.com>2018-02-23 10:31:19 +1100
commit69adf79234b586867eab8d0d130aff0083b7ef93 (patch)
tree7b0b481c1477eaec729ac0492668199e675056eb
parent3b320d675fe058311d921e26cd89b2e703310b21 (diff)
downloadgitlab-ce-69adf79234b586867eab8d0d130aff0083b7ef93.tar.gz
Fix clusters_controller_spec (#42643)
-rw-r--r--spec/controllers/projects/clusters_controller_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/controllers/projects/clusters_controller_spec.rb b/spec/controllers/projects/clusters_controller_spec.rb
index 617c1471239..15ce418d0d6 100644
--- a/spec/controllers/projects/clusters_controller_spec.rb
+++ b/spec/controllers/projects/clusters_controller_spec.rb
@@ -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