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/policies/project_policy_spec.rb')
-rw-r--r--spec/policies/project_policy_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/policies/project_policy_spec.rb b/spec/policies/project_policy_spec.rb
index 350d834e63e..e7c2dcc4158 100644
--- a/spec/policies/project_policy_spec.rb
+++ b/spec/policies/project_policy_spec.rb
@@ -828,7 +828,7 @@ RSpec.describe ProjectPolicy, feature_category: :system_access do
end
context 'alert bot' do
- let(:current_user) { User.alert_bot }
+ let(:current_user) { Users::Internal.alert_bot }
it { is_expected.to be_allowed(:reporter_access) }
@@ -882,7 +882,7 @@ RSpec.describe ProjectPolicy, feature_category: :system_access do
end
context 'support bot' do
- let(:current_user) { User.support_bot }
+ let(:current_user) { Users::Internal.support_bot }
context 'with service desk disabled' do
it { expect_allowed(:public_access) }