summaryrefslogtreecommitdiff
path: root/spec/controllers/groups
diff options
context:
space:
mode:
authorJoão Cunha <j.a.cunha@gmail.com>2019-07-30 14:12:16 +0100
committerJoão Cunha <j.a.cunha@gmail.com>2019-07-30 16:32:42 +0100
commit9aa31c8aef56a104fe5007a8994b3936059d3516 (patch)
treed471886e4287fdef6ea1af2f7578f2336a091dc3 /spec/controllers/groups
parentab509c78929d9b5f4e02d013e8911ac9d0a07aad (diff)
downloadgitlab-ce-9aa31c8aef56a104fe5007a8994b3936059d3516.tar.gz
- the typo in this factory name was precluding us from properly creating dynamic code to remove duplciation.
Diffstat (limited to 'spec/controllers/groups')
-rw-r--r--spec/controllers/groups/clusters/applications_controller_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/controllers/groups/clusters/applications_controller_spec.rb b/spec/controllers/groups/clusters/applications_controller_spec.rb
index 16a63536ea6..21533d1c89a 100644
--- a/spec/controllers/groups/clusters/applications_controller_spec.rb
+++ b/spec/controllers/groups/clusters/applications_controller_spec.rb
@@ -91,7 +91,7 @@ describe Groups::Clusters::ApplicationsController do
patch :update, params: params.merge(group_id: group)
end
- let!(:application) { create(:clusters_applications_cert_managers, :installed, cluster: cluster) }
+ let!(:application) { create(:clusters_applications_cert_manager, :installed, cluster: cluster) }
let(:application_name) { application.name }
let(:params) { { application: application_name, id: cluster.id, email: "new-email@example.com" } }