Try to get build to fix

This commit is contained in:
Jonathan Claudius 2019-01-31 14:52:28 -05:00
parent ee20f73883
commit a9480edbc2
No known key found for this signature in database
GPG key ID: 4BCDD990313DFA87
3 changed files with 6 additions and 6 deletions

View file

@ -857,7 +857,7 @@ fn ambiguous_git_reference() {
authors = []
[dependencies.bar]
git = "https://127.0.0.1"
git = "http://127.0.0.1"
branch = "master"
tag = "some-tag"
"#,
@ -910,7 +910,7 @@ fn bad_source_config2() {
".cargo/config",
r#"
[source.crates-io]
registry = 'https://example.com'
registry = 'http://example.com'
replace-with = 'bar'
"#,
)
@ -1076,7 +1076,7 @@ fn both_git_and_path_specified() {
authors = []
[dependencies.bar]
git = "https://127.0.0.1"
git = "http://127.0.0.1"
path = "bar"
"#,
)

View file

@ -171,7 +171,7 @@ fn https_something_happens() {
authors = []
[dependencies.bar]
git = "https://127.0.0.1:{}/foo/bar"
git = "http://127.0.0.1:{}/foo/bar"
"#,
addr.port()
),

View file

@ -12,7 +12,7 @@ fn net_retry_loads_from_config() {
authors = []
[dependencies.bar]
git = "https://127.0.0.1:11/foo/bar"
git = "http://127.0.0.1:11/foo/bar"
"#,
)
.file("src/main.rs", "")
@ -48,7 +48,7 @@ fn net_retry_git_outputs_warning() {
authors = []
[dependencies.bar]
git = "https://127.0.0.1:11/foo/bar"
git = "http://127.0.0.1:11/foo/bar"
"#,
)
.file(