Skip to content

Commit

Permalink
Break long lines to make pep8 happy
Browse files Browse the repository at this point in the history
  • Loading branch information
msabramo committed Mar 12, 2015
1 parent 10f7084 commit 16a7c81
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions tests/unit/test_vcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,17 @@ def test_git_urls():
SSH has special handling.
"""
https_repo = Git(
url='git+https://github.com/Eyepea/pip.git@8cf54fff31b650847e0cddc2cd2951c34e0b4822#egg=pip'
url='git+https://github.com/Eyepea/pip.git'
'@8cf54fff31b650847e0cddc2cd2951c34e0b4822#egg=pip'
)
implicit_ssh_repo = Git(
url='git+git@github.com:Eyepea/pip.git@8cf54fff31b650847e0cddc2cd2951c34e0b4822#egg=pip'
url='git+git@github.com:Eyepea/pip.git'
'@8cf54fff31b650847e0cddc2cd2951c34e0b4822#egg=pip'
)

explicit_ssh_repo = Git(
url='git+ssh://git@github.com:Eyepea/pip.git@8cf54fff31b650847e0cddc2cd2951c34e0b4822#egg=pip'
url='git+ssh://git@github.com:Eyepea/pip.git'
'@8cf54fff31b650847e0cddc2cd2951c34e0b4822#egg=pip'
)

assert https_repo.get_url_rev() == (
Expand Down

0 comments on commit 16a7c81

Please sign in to comment.