Skip to content

Commit

Permalink
Fix pip git source unreachable
Browse files Browse the repository at this point in the history
  • Loading branch information
feelepxyz committed Sep 26, 2019
1 parent 8674e84 commit 00851be
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@
expect { subject }.
to raise_error(Dependabot::GitDependenciesNotReachable) do |error|
expect(error.dependency_urls).
to eq(["https://github.com/greysteil/django.git"])
to eq(["https://github.com/user/django.git"])
end
end
end
Expand Down
2 changes: 1 addition & 1 deletion python/spec/fixtures/lockfiles/git_source_unreachable.lock
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"version": "==3.0.4"
},
"django": {
"git": "https://github.com/greysteil/django.git",
"git": "https://github.com/user/django.git",
"ref": "1.11.4"
},
"idna": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ pytest
pytest-xdist
mock
Attrs
-e git+https://github.com/greysteil/unreachable#egg=unreachable
-e git+https://github.com/user/unreachable#egg=unreachable
2 changes: 1 addition & 1 deletion python/spec/fixtures/pipfiles/git_source_unreachable
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ verify_ssl = true

[packages]
requests = "*"
django = { git = 'https://github.com/greysteil/django.git', ref = '1.11.4' }
django = { git = 'https://github.com/user/django.git', ref = '1.11.4' }

0 comments on commit 00851be

Please sign in to comment.