summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrant Young <gyoung@gitlab.com>2019-08-16 09:44:23 +0100
committerGrant Young <gyoung@gitlab.com>2019-08-16 10:06:05 +0100
commit06d6d89be7f2461099ae41b12aa435519e21ce12 (patch)
tree320f8b9f4996adb7018f443e093c8821826d1348
parent4418907ccefc64ff26c318f9535a609353e3c3be (diff)
downloadgitlab-ce-gy-qa-transfer-uuid.tar.gz
Ensure groups have UUIDs in transfer_project_specgy-qa-transfer-uuid
Allows different users to run tests against the same environment
-rw-r--r--qa/qa/specs/features/browser_ui/1_manage/group/transfer_project_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/qa/qa/specs/features/browser_ui/1_manage/group/transfer_project_spec.rb b/qa/qa/specs/features/browser_ui/1_manage/group/transfer_project_spec.rb
index c9acd7df776..d1d239cabdf 100644
--- a/qa/qa/specs/features/browser_ui/1_manage/group/transfer_project_spec.rb
+++ b/qa/qa/specs/features/browser_ui/1_manage/group/transfer_project_spec.rb
@@ -8,16 +8,16 @@ module QA
Page::Main::Login.perform(&:sign_in_using_credentials)
source_group = Resource::Group.fabricate_via_api! do |group|
- group.path = 'source-group'
+ group.path = "qa-test-source-group-#{SecureRandom.hex(8)}"
end
target_group = Resource::Group.fabricate_via_api! do |group|
- group.path = 'target-group'
+ group.path = "qa-test-target-group-#{SecureRandom.hex(8)}"
end
project = Resource::Project.fabricate_via_api! do |project|
project.group = source_group
- project.name = 'transfer-project'
+ project.name = 'qa-test-transfer-project'
project.initialize_with_readme = true
end