Skip to content

Commit

Permalink
Fix compile errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
brendandburns committed May 17, 2023
1 parent 92c257a commit 0353bf4
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,8 @@ fn main() -> Result<()> {

// Delete is not an allowed method in this test.
let r6 = request(
types::MethodParam::Delete,
types::SchemeParam::Http,
types::Method::Delete,
types::Scheme::Http,
"localhost:3000",
"/",
"",
Expand All @@ -200,8 +200,8 @@ fn main() -> Result<()> {

// localhost:8080 is not an allowed authority in this test.
let r7 = request(
types::MethodParam::Get,
types::SchemeParam::Http,
types::Method::Get,
types::Scheme::Http,
"localhost:8080",
"/",
"",
Expand Down

0 comments on commit 0353bf4

Please sign in to comment.