summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRémy Coutable <remy@rymai.me>2018-11-14 17:58:48 +0000
committerAlex Hanselka <alex@gitlab.com>2018-11-14 17:16:28 -0600
commite9aa079892ab5da925cc0dceffe5e4d11643095a (patch)
tree9963795873f8c79445487dfb0ec3b37c0e4707ba
parentc6328e788b9cfa7809f8735e9ab099a1a11c0133 (diff)
downloadgitlab-ce-e9aa079892ab5da925cc0dceffe5e4d11643095a.tar.gz
Merge branch 'qa-fix-git-protocol-v2-spec' into 'master'
Fix Git protocol v2 e2e test Closes gitlab-org/quality/staging#16 See merge request gitlab-org/gitlab-ce!23067
-rw-r--r--qa/qa/specs/features/browser_ui/3_create/repository/protocol_v2_push_ssh_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/qa/qa/specs/features/browser_ui/3_create/repository/protocol_v2_push_ssh_spec.rb b/qa/qa/specs/features/browser_ui/3_create/repository/protocol_v2_push_ssh_spec.rb
index bc88e6450f5..135925c007f 100644
--- a/qa/qa/specs/features/browser_ui/3_create/repository/protocol_v2_push_ssh_spec.rb
+++ b/qa/qa/specs/features/browser_ui/3_create/repository/protocol_v2_push_ssh_spec.rb
@@ -10,7 +10,7 @@ module QA
let(:key_title) { "key for ssh tests #{Time.now.to_f}" }
let(:ssh_key) do
- Factory::Resource::SSHKey.fabricate! do |resource|
+ Resource::SSHKey.fabricate! do |resource|
resource.title = key_title
end
end
@@ -38,7 +38,7 @@ module QA
it 'user pushes to the repository' do
# Create a project to push to
- project = Factory::Resource::Project.fabricate! do |project|
+ project = Resource::Project.fabricate! do |project|
project.name = 'git-protocol-project'
end