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>2023-06-17 00:09:11 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-06-17 00:09:11 +0300
commitfe530c6e7f3253de54a37ba68767c36c9d28ecec (patch)
treeec5d694d5c1f963e4ba189464ec886212e84759b /spec/requests
parentc44eade0d7b09c9d80c42aba6d1974ce9cd3146b (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/requests')
-rw-r--r--spec/requests/api/project_export_spec.rb2
-rw-r--r--spec/requests/import/gitlab_groups_controller_spec.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/spec/requests/api/project_export_spec.rb b/spec/requests/api/project_export_spec.rb
index 22d7ea36f6c..434936c0ee7 100644
--- a/spec/requests/api/project_export_spec.rb
+++ b/spec/requests/api/project_export_spec.rb
@@ -284,7 +284,7 @@ RSpec.describe API::ProjectExport, :aggregate_failures, :clean_gitlab_redis_cach
stub_application_setting(project_download_export_limit: 1)
end
- it 'throttles downloads within same namespaces' do
+ it 'throttles downloads within same namespaces', quarantine: 'https://gitlab.com/gitlab-org/gitlab/-/issues/413230' do
# simulate prior request to the same namespace, which increments the rate limit counter for that scope
Gitlab::ApplicationRateLimiter.throttled?(:project_download_export, scope: [user, project_finished.namespace])
diff --git a/spec/requests/import/gitlab_groups_controller_spec.rb b/spec/requests/import/gitlab_groups_controller_spec.rb
index 1766c48cca1..734a4cefc5c 100644
--- a/spec/requests/import/gitlab_groups_controller_spec.rb
+++ b/spec/requests/import/gitlab_groups_controller_spec.rb
@@ -69,7 +69,7 @@ RSpec.describe Import::GitlabGroupsController, feature_category: :importers do
expect(GroupImportWorker).to have_received(:perform_async).with(user.id, group.id)
expect(group.description).to eq 'A voluptate non sequi temporibus quam at.'
- expect(group.visibility_level).to eq Gitlab::VisibilityLevel::PRIVATE
+ expect(group.visibility_level).to eq Gitlab::VisibilityLevel::PUBLIC
end
end