Skip to content

Commit 570d53f

Browse files
committed
Merge pull request #1 from msabramo/pr_2513_fixes
Break long lines to make pep8 happy
2 parents 10f7084 + 16a7c81 commit 570d53f

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

tests/unit/test_vcs.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,17 @@ def test_git_urls():
4646
SSH has special handling.
4747
"""
4848
https_repo = Git(
49-
url='git+https://github.com/Eyepea/pip.git@8cf54fff31b650847e0cddc2cd2951c34e0b4822#egg=pip'
49+
url='git+https://github.com/Eyepea/pip.git'
50+
'@8cf54fff31b650847e0cddc2cd2951c34e0b4822#egg=pip'
5051
)
5152
implicit_ssh_repo = Git(
52-
url='[email protected]:Eyepea/pip.git@8cf54fff31b650847e0cddc2cd2951c34e0b4822#egg=pip'
53+
url='[email protected]:Eyepea/pip.git'
54+
'@8cf54fff31b650847e0cddc2cd2951c34e0b4822#egg=pip'
5355
)
5456

5557
explicit_ssh_repo = Git(
56-
url='git+ssh://[email protected]:Eyepea/pip.git@8cf54fff31b650847e0cddc2cd2951c34e0b4822#egg=pip'
58+
url='git+ssh://[email protected]:Eyepea/pip.git'
59+
'@8cf54fff31b650847e0cddc2cd2951c34e0b4822#egg=pip'
5760
)
5861

5962
assert https_repo.get_url_rev() == (

0 commit comments

Comments
 (0)