Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/support/shared_contexts/finders/issues_finder_shared_contexts.rb')
-rw-r--r--spec/support/shared_contexts/finders/issues_finder_shared_contexts.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/support/shared_contexts/finders/issues_finder_shared_contexts.rb b/spec/support/shared_contexts/finders/issues_finder_shared_contexts.rb
index 2ad2fcec39e..4e3fada649f 100644
--- a/spec/support/shared_contexts/finders/issues_finder_shared_contexts.rb
+++ b/spec/support/shared_contexts/finders/issues_finder_shared_contexts.rb
@@ -63,9 +63,9 @@ RSpec.shared_context 'IssuesFinder context' do
)
end
- let_it_be(:group_level_item) { create(:issue, :epic, :group_level, namespace: group, author: user) }
+ let_it_be(:group_level_item) { create(:issue, :group_level, namespace: group, author: user) }
let_it_be(:group_level_confidential_item) do
- create(:issue, :confidential, :epic, :group_level, namespace: group, author: user2)
+ create(:issue, :confidential, :group_level, namespace: group, author: user2)
end
let_it_be(:award_emoji1) { create(:award_emoji, name: 'thumbsup', user: user, awardable: item1) }