Skip to content
Snippets Groups Projects
Commit 649c9969 authored by Robert Speicher's avatar Robert Speicher
Browse files

Fix Style/IndentationConsistency cop violations

parent 7b9b3c5a
No related branches found
No related tags found
No related merge requests found
Loading
@@ -18,14 +18,12 @@ describe 'Gitlab::Satellite::Action' do
Loading
@@ -18,14 +18,12 @@ describe 'Gitlab::Satellite::Action' do
expect(starting_remote_count).to be >= 1 expect(starting_remote_count).to be >= 1
#kind of hookey way to add a second remote #kind of hookey way to add a second remote
origin_uri = repo.git.remote({v: true}).split(" ")[1] origin_uri = repo.git.remote({v: true}).split(" ")[1]
begin
repo.git.remote({raise: true}, 'add', 'another-remote', origin_uri) repo.git.remote({raise: true}, 'add', 'another-remote', origin_uri)
repo.git.branch({raise: true}, 'a-new-branch') repo.git.branch({raise: true}, 'a-new-branch')
   
expect(repo.heads.size).to be > (starting_remote_count) expect(repo.heads.size).to be > (starting_remote_count)
expect(repo.git.remote().split(" ").size).to be > (starting_remote_count) expect(repo.git.remote().split(" ").size).to be > (starting_remote_count)
rescue
end
   
repo.git.config({}, "user.name", "#{user.name} -- foo") repo.git.config({}, "user.name", "#{user.name} -- foo")
repo.git.config({}, "user.email", "#{user.email} -- foo") repo.git.config({}, "user.email", "#{user.email} -- foo")
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment