Skip to content

Commit

Permalink
Fix remote signer consumer tests
Browse files Browse the repository at this point in the history
  • Loading branch information
paulhauner committed Jun 2, 2021
1 parent ad4af63 commit 40e6917
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common/remote_signer_consumer/tests/post.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,15 +121,15 @@ mod post {
testcase(
"unix:/run/foo.socket",
&format!(
"[Reqwest - Builder] Url {{ scheme: \"unix\", username: \"\", password: None, host: None, port: None, path: \"/run/foo.socket/sign/{}\", query: None, fragment: None }}",
"[Reqwest - Builder] Url {{ scheme: \"unix\", cannot_be_a_base: false, username: \"\", password: None, host: None, port: None, path: \"/run/foo.socket/sign/{}\", query: None, fragment: None }}",
PUBLIC_KEY_1
),
);
// `Reqwest::Error` of the `Request` kind.
testcase(
"http://127.0.0.1:0",
&format!(
"[Reqwest - Request] Url {{ scheme: \"http\", username: \"\", password: None, host: Some(Ipv4(127.0.0.1)), port: Some(0), path: \"/sign/{}\", query: None, fragment: None }}",
"[Reqwest - Request] Url {{ scheme: \"http\", cannot_be_a_base: false, username: \"\", password: None, host: Some(Ipv4(127.0.0.1)), port: Some(0), path: \"/sign/{}\", query: None, fragment: None }}",
PUBLIC_KEY_1
),
);
Expand Down

0 comments on commit 40e6917

Please sign in to comment.