Commit 718e745f authored by Ash McKenzie's avatar Ash McKenzie

Correct new repository clone location method calls

choose_repository_clone_xxx is now known as repository_clone_xxx_location
parent db7bdaf9
......@@ -48,10 +48,7 @@ module QA
end
# Grab the HTTP URI for the secondary and store as 'location'
location = Page::Project::Show.act do
choose_repository_clone_http
repository_location
end
location = Page::Project::Show.act { repository_clone_http_location }
# Perform a git push over HTTP at the secondary
push = Resource::Repository::Push.fabricate! do |push|
......@@ -127,10 +124,7 @@ module QA
end
# Grab the HTTP URI for the secondary and store as 'location'
location = Page::Project::Show.act do
choose_repository_clone_http
repository_location
end
location = Page::Project::Show.act { repository_clone_http_location }
# Perform a git push over HTTP at the secondary
push = Resource::Repository::Push.fabricate! do |push|
......
......@@ -66,10 +66,7 @@ module QA
end
# Grab the SSH URI for the secondary and store as 'location'
location = Page::Project::Show.act do
choose_repository_clone_ssh
repository_location
end
location = Page::Project::Show.act { repository_clone_ssh_location }
# Perform a git push over SSH at the secondary
push = Resource::Repository::Push.fabricate! do |push|
......@@ -158,10 +155,7 @@ module QA
end
# Grab the SSH URI for the secondary and store as 'location'
location = Page::Project::Show.act do
choose_repository_clone_ssh
repository_location
end
location = Page::Project::Show.act { repository_clone_ssh_location }
# Perform a git push over SSH at the secondary
push = Resource::Repository::Push.fabricate! do |push|
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment