Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/factories/clusters/clusters.rb')
-rw-r--r--spec/factories/clusters/clusters.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/factories/clusters/clusters.rb b/spec/factories/clusters/clusters.rb
index 2785a8c9946..d1e7a9fac95 100644
--- a/spec/factories/clusters/clusters.rb
+++ b/spec/factories/clusters/clusters.rb
@@ -83,7 +83,7 @@ FactoryBot.define do
end
trait :with_installed_prometheus do
- integration_prometheus factory: %i(clusters_integrations_prometheus)
+ integration_prometheus factory: %i[clusters_integrations_prometheus]
end
trait :with_domain do
@@ -92,7 +92,7 @@ FactoryBot.define do
trait :with_environments do
transient do
- environments { %i(staging production) }
+ environments { %i[staging production] }
end
cluster_type { Clusters::Cluster.cluster_types[:project_type] }