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/factories/identities.rb')
-rw-r--r--spec/factories/identities.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/factories/identities.rb b/spec/factories/identities.rb
index fda4bfa589b..a2615ce30c3 100644
--- a/spec/factories/identities.rb
+++ b/spec/factories/identities.rb
@@ -3,6 +3,6 @@
FactoryBot.define do
factory :identity do
provider { 'ldapmain' }
- sequence(:extern_uid) { |n| "my-ldap-id-#{n}" }
+ extern_uid { 'my-ldap-id' }
end
end