1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

Break long lines to make pep8 happy

This commit is contained in:
Marc Abramowitz 2015-03-12 04:04:09 -07:00
parent 10f70849fd
commit 16a7c81bcf

View file

@ -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() == (