Skip to content

Commit

Permalink
make rubocop happy
Browse files Browse the repository at this point in the history
  • Loading branch information
jreidinger committed Jun 21, 2021
1 parent 970905b commit 96d30de
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions library/general/test/y2issues/list_test.rb
Expand Up @@ -79,9 +79,10 @@
issue2 = Y2Issues::Issue.new("Something went wrong2")
issue3 = Y2Issues::Issue.new("Something went wrong3")
expect(described_class.new([issue1]).concat(
described_class.new([issue2]), described_class.new([issue3])).to_a).to eq(
described_class.new([issue1, issue2, issue3]).to_a
)
described_class.new([issue2]), described_class.new([issue3])
).to_a).to eq(
described_class.new([issue1, issue2, issue3]).to_a
)
end
end
end

0 comments on commit 96d30de

Please sign in to comment.