diff options
author | Mark Lapierre <mlapierre@gitlab.com> | 2018-11-14 10:54:17 -0500 |
---|---|---|
committer | Mark Lapierre <mlapierre@gitlab.com> | 2018-11-14 10:55:12 -0500 |
commit | 99a084e7c8fb5347cea095c26a927ad060f3392c (patch) | |
tree | 7ed3db42b75028ff37b82acba00e41831f42e0ab /qa | |
parent | 63b4b4b2688fa4f068772026536b2250bce39070 (diff) | |
download | gitlab-ce-99a084e7c8fb5347cea095c26a927ad060f3392c.tar.gz |
Fix Git protocol v2 e2e testqa-fix-git-protocol-v2-spec
Remove references to `Factory`
Diffstat (limited to 'qa')
-rw-r--r-- | qa/qa/specs/features/browser_ui/3_create/repository/protocol_v2_push_ssh_spec.rb | 4 |
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 |