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>2020-04-24 15:10:16 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-04-24 15:10:16 +0300
commit5c8c561ac63d7b8f372316b4409500474220fcda (patch)
tree20586ba87f12052ee507171b07f61dd21d9f1fd8 /spec/factories
parentb1b7c2f9a744197a111c81719c546a474adab4e8 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/factories')
-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 a2615ce30c3..fda4bfa589b 100644
--- a/spec/factories/identities.rb
+++ b/spec/factories/identities.rb
@@ -3,6 +3,6 @@
FactoryBot.define do
factory :identity do
provider { 'ldapmain' }
- extern_uid { 'my-ldap-id' }
+ sequence(:extern_uid) { |n| "my-ldap-id-#{n}" }
end
end