Commit 6010fe86 authored by Sean McGivern's avatar Sean McGivern

Merge branch 'ab-49788-reduce-model-instances-in-test' into 'master'

Reduce number of model instances needed in test.

Closes #49788

See merge request gitlab-org/gitlab-ce!21192
parents c0d42d2e 0d7ea0b3
......@@ -30,7 +30,7 @@ describe InternalId do
context 'with existing issues' do
before do
rand(1..10).times { create(:issue, project: project) }
create_list(:issue, 2, project: project)
described_class.delete_all
end
......@@ -54,7 +54,7 @@ describe InternalId do
end
it 'generates a strictly monotone, gapless sequence' do
seq = (0..rand(100)).map do
seq = Array.new(10).map do
described_class.generate_next(issue, scope, usage, init)
end
normalized = seq.map { |i| i - seq.min }
......
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