Commit ac00cd10 authored by Shinya Maeda's avatar Shinya Maeda

%w() to %[]

parent af7cb5b9
...@@ -56,7 +56,7 @@ describe PipelinesFinder do ...@@ -56,7 +56,7 @@ describe PipelinesFinder do
let(:params) { { scope: 'finished' } } let(:params) { { scope: 'finished' } }
it 'has only finished status' do it 'has only finished status' do
expect(subject.map(&:status)).to match_array %w(success canceled failed) expect(subject.map(&:status)).to match_array %[success canceled failed]
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment