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:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-10-20 12:40:42 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-10-20 12:40:42 +0300
commitee664acb356f8123f4f6b00b73c1e1cf0866c7fb (patch)
treef8479f94a28f66654c6a4f6fb99bad6b4e86a40e /spec/finders/groups
parent62f7d5c5b69180e82ae8196b7b429eeffc8e7b4f (diff)
Add latest changes from gitlab-org/gitlab@15-5-stable-eev15.5.0-rc42
Diffstat (limited to 'spec/finders/groups')
-rw-r--r--spec/finders/groups/accepting_group_transfers_finder_spec.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/spec/finders/groups/accepting_group_transfers_finder_spec.rb b/spec/finders/groups/accepting_group_transfers_finder_spec.rb
index 1a6c6f9243b..06e6fa05892 100644
--- a/spec/finders/groups/accepting_group_transfers_finder_spec.rb
+++ b/spec/finders/groups/accepting_group_transfers_finder_spec.rb
@@ -117,19 +117,6 @@ RSpec.describe Groups::AcceptingGroupTransfersFinder do
expect(result).to contain_exactly(great_grandparent_group)
end
end
-
- context 'when the feature flag `include_groups_from_group_shares_in_group_transfer_locations` is turned off' do
- before do
- stub_feature_flags(include_groups_from_group_shares_in_group_transfer_locations: false)
- end
-
- it 'excludes the groups where the user has OWNER access through group shares' do
- expect(result).not_to include(
- shared_with_group_where_direct_owner_as_owner,
- subgroup_of_shared_with_group_where_direct_owner_as_owner
- )
- end
- end
end
end
end