summaryrefslogtreecommitdiff
path: root/spec/finders/pipelines_finder_spec.rb
diff options
context:
space:
mode:
authorShinya Maeda <gitlab.shinyamaeda@gmail.com>2017-03-07 22:02:29 +0900
committerShinya Maeda <gitlab.shinyamaeda@gmail.com>2017-05-03 02:11:51 +0900
commitd33e762167a197f30d075ed409ca1a07ae9f83c6 (patch)
treec89de69219397eec621d5ef3a3da4666266d2371 /spec/finders/pipelines_finder_spec.rb
parentac00cd1021cd4e2d6b7a11683b0af61065918a1c (diff)
downloadgitlab-ce-d33e762167a197f30d075ed409ca1a07ae9f83c6.tar.gz
%[] to %w[]
Diffstat (limited to 'spec/finders/pipelines_finder_spec.rb')
-rw-r--r--spec/finders/pipelines_finder_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/finders/pipelines_finder_spec.rb b/spec/finders/pipelines_finder_spec.rb
index 395eb2f9701..a16d3bb8d25 100644
--- a/spec/finders/pipelines_finder_spec.rb
+++ b/spec/finders/pipelines_finder_spec.rb
@@ -56,7 +56,7 @@ describe PipelinesFinder do
let(:params) { { scope: 'finished' } }
it 'has only finished status' do
- expect(subject.map(&:status)).to match_array %[success canceled failed]
+ expect(subject.map(&:status)).to match_array %w[success canceled failed]
end
end