Skip to content

Commit a9480ed

Browse files
author
Jonathan Claudius
committed
Try to get build to fix
1 parent ee20f73 commit a9480ed

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

tests/testsuite/bad_config.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -857,7 +857,7 @@ fn ambiguous_git_reference() {
857857
authors = []
858858
859859
[dependencies.bar]
860-
git = "https://127.0.0.1"
860+
git = "http://127.0.0.1"
861861
branch = "master"
862862
tag = "some-tag"
863863
"#,
@@ -910,7 +910,7 @@ fn bad_source_config2() {
910910
".cargo/config",
911911
r#"
912912
[source.crates-io]
913-
registry = 'https://example.com'
913+
registry = 'http://example.com'
914914
replace-with = 'bar'
915915
"#,
916916
)
@@ -1076,7 +1076,7 @@ fn both_git_and_path_specified() {
10761076
authors = []
10771077
10781078
[dependencies.bar]
1079-
git = "https://127.0.0.1"
1079+
git = "http://127.0.0.1"
10801080
path = "bar"
10811081
"#,
10821082
)

tests/testsuite/build_auth.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ fn https_something_happens() {
171171
authors = []
172172
173173
[dependencies.bar]
174-
git = "https://127.0.0.1:{}/foo/bar"
174+
git = "http://127.0.0.1:{}/foo/bar"
175175
"#,
176176
addr.port()
177177
),

tests/testsuite/net_config.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ fn net_retry_loads_from_config() {
1212
authors = []
1313
1414
[dependencies.bar]
15-
git = "https://127.0.0.1:11/foo/bar"
15+
git = "http://127.0.0.1:11/foo/bar"
1616
"#,
1717
)
1818
.file("src/main.rs", "")
@@ -48,7 +48,7 @@ fn net_retry_git_outputs_warning() {
4848
authors = []
4949
5050
[dependencies.bar]
51-
git = "https://127.0.0.1:11/foo/bar"
51+
git = "http://127.0.0.1:11/foo/bar"
5252
"#,
5353
)
5454
.file(

0 commit comments

Comments
 (0)