Commit c0bc3aaa authored by Steve Azzopardi's avatar Steve Azzopardi

Resolve conflicts in spec/migrations/delete_inconsistent_internal_id_records_spec.rb

Resolve conflict for https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/8664
parent b8e076cf
...@@ -95,16 +95,10 @@ describe DeleteInconsistentInternalIdRecords, :migration do ...@@ -95,16 +95,10 @@ describe DeleteInconsistentInternalIdRecords, :migration do
context 'for milestones (by group)' do context 'for milestones (by group)' do
# milestones (by group) is a little different than most of the other models # milestones (by group) is a little different than most of the other models
<<<<<<< HEAD
let!(:group1) { create(:group) }
let!(:group2) { create(:group) }
let!(:group3) { create(:group) }
=======
let(:groups) { table(:namespaces) } let(:groups) { table(:namespaces) }
let(:group1) { groups.create(name: 'Group 1', type: 'Group', path: 'group_1') } let(:group1) { groups.create(name: 'Group 1', type: 'Group', path: 'group_1') }
let(:group2) { groups.create(name: 'Group 2', type: 'Group', path: 'group_2') } let(:group2) { groups.create(name: 'Group 2', type: 'Group', path: 'group_2') }
let(:group3) { groups.create(name: 'Group 2', type: 'Group', path: 'group_3') } let(:group3) { groups.create(name: 'Group 2', type: 'Group', path: 'group_3') }
>>>>>>> upstream/master
let(:internal_id_query) { ->(group) { InternalId.where(usage: InternalId.usages['milestones'], namespace: group) } } let(:internal_id_query) { ->(group) { InternalId.where(usage: InternalId.usages['milestones'], namespace: group) } }
......
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