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/lib/gitlab/endpoint_attributes_spec.rb')
-rw-r--r--spec/lib/gitlab/endpoint_attributes_spec.rb14
1 files changed, 7 insertions, 7 deletions
diff --git a/spec/lib/gitlab/endpoint_attributes_spec.rb b/spec/lib/gitlab/endpoint_attributes_spec.rb
index a623070c3eb..34f4221b86a 100644
--- a/spec/lib/gitlab/endpoint_attributes_spec.rb
+++ b/spec/lib/gitlab/endpoint_attributes_spec.rb
@@ -11,19 +11,19 @@ RSpec.describe Gitlab::EndpointAttributes, feature_category: :api do
let(:controller) do
Class.new(base_controller) do
- feature_category :foo, %w(update edit)
- feature_category :bar, %w(index show)
- feature_category :quux, %w(destroy)
+ feature_category :foo, %w[update edit]
+ feature_category :bar, %w[index show]
+ feature_category :quux, %w[destroy]
- urgency :high, %w(do_a)
- urgency :low, %w(do_b do_c)
+ urgency :high, %w[do_a]
+ urgency :low, %w[do_b do_c]
end
end
let(:subclass) do
Class.new(controller) do
- feature_category :baz, %w(subclass_index)
- urgency :high, %w(superclass_do_something)
+ feature_category :baz, %w[subclass_index]
+ urgency :high, %w[superclass_do_something]
end
end