Skip to content

Commit

Permalink
Merge pull request #1 from msabramo/pr_2513_fixes
Browse files Browse the repository at this point in the history
Break long lines to make pep8 happy
  • Loading branch information
ludovic-gasc committed Mar 12, 2015
2 parents 10f7084 + 16a7c81 commit 570d53f
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 570d53f

Please sign in to comment.