DEV: make the build less flaky (#29288)
We only care that there are other results, not that there are a specific amount.
This commit is contained in:
parent
97ba39e60f
commit
1a66556f1a
|
@ -120,7 +120,7 @@ RSpec.describe SvgSpriteController do
|
|||
data = response.parsed_body
|
||||
beer_icon = response.parsed_body.find { |i| i["id"] == "beer-mug-empty" }
|
||||
expect(beer_icon).to be nil
|
||||
expect(data.length).to eq(250)
|
||||
expect(data.length).to be > 0
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in New Issue