Skip to content
Snippets Groups Projects
Unverified Commit e456a42d authored by Stan Hu's avatar Stan Hu
Browse files

Fix flaky spec in spec/models/packages/debian/group_distribution_spec.rb

The array elements can be returned in any order, so just check for that.
parent 1fd3674a
No related branches found
No related tags found
1 merge request!59708Fix flaky spec in spec/models/packages/debian/group_distribution_spec.rb
......@@ -179,7 +179,7 @@
subject { described_class.with_codename_or_suite(distribution_with_suite.codename) }
it 'does not return other distributions' do
expect(subject.to_a).to eq([distribution_with_suite, distribution_with_same_codename, distribution_with_codename_and_suite_flipped])
expect(subject.to_a).to contain_exactly(distribution_with_suite, distribution_with_same_codename, distribution_with_codename_and_suite_flipped)
end
end
......@@ -187,7 +187,7 @@
subject { described_class.with_codename_or_suite(distribution_with_suite.suite) }
it 'does not return other distributions' do
expect(subject.to_a).to eq([distribution_with_suite, distribution_with_same_suite, distribution_with_codename_and_suite_flipped])
expect(subject.to_a).to contain_exactly(distribution_with_suite, distribution_with_same_suite, distribution_with_codename_and_suite_flipped)
end
end
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment