Fix Rubocop offense in grouped statuses class specs

This commit is contained in:
Grzegorz Bizon 2018-05-23 13:30:34 +02:00
parent dab3ae39a2
commit 92de5f778f
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ describe Ci::Group do
it 'returns an array of three groups' do
expect(stage.groups).to be_a Array
expect(stage.groups).to all(be_a Ci::Group)
expect(stage.groups).to all(be_a described_class)
expect(stage.groups.size).to eq 3
end