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-07-06 00:08:43 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-07-06 00:08:43 +0300
commit59712a466f6f12acf517cdea2c4fa876f0214124 (patch)
treeba91f1d944811e9eef71bd45843797ad9989c3af /spec/services/auth
parent2b2299ea5f8717ad59a47c1c40d951409dfeb35b (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/services/auth')
-rw-r--r--spec/services/auth/dependency_proxy_authentication_service_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/services/auth/dependency_proxy_authentication_service_spec.rb b/spec/services/auth/dependency_proxy_authentication_service_spec.rb
index 8f92fbe272c..3ef9c8fc96e 100644
--- a/spec/services/auth/dependency_proxy_authentication_service_spec.rb
+++ b/spec/services/auth/dependency_proxy_authentication_service_spec.rb
@@ -5,7 +5,7 @@ require 'spec_helper'
RSpec.describe Auth::DependencyProxyAuthenticationService, feature_category: :dependency_proxy do
let_it_be(:user) { create(:user) }
- let(:service) { Auth::DependencyProxyAuthenticationService.new(nil, user) }
+ let(:service) { described_class.new(nil, user) }
before do
stub_config(dependency_proxy: { enabled: true })