Skip to content

Commit

Permalink
chore(pact_verifier): fix tests after merge from master
Browse files Browse the repository at this point in the history
  • Loading branch information
rholshausen committed Jul 9, 2024
1 parent 408149d commit 5613804
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rust/pact_verifier/src/pact_broker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2567,7 +2567,7 @@ mod tests {
i
})
.await
.start_mock_server(None);
.start_mock_server(None, None);

let client = HALClient::with_url(pact_broker.url().as_str(), None);
let result = client.navigate("next", &hashmap!{}).await.unwrap();
Expand All @@ -2585,7 +2585,7 @@ mod tests {
i
})
.await
.start_mock_server(None);
.start_mock_server(None, None);

let mut client = HALClient::with_url(pact_broker.url().as_str(), None);
client.path_info = Some(json!({
Expand Down Expand Up @@ -2617,7 +2617,7 @@ mod tests {
i
})
.await
.start_mock_server(None);
.start_mock_server(None, None);

let client = HALClient::with_url(pact_broker.url().join("/base-path").unwrap().as_str(), None);
let result = client.navigate("next", &hashmap!{}).await.unwrap();
Expand Down

0 comments on commit 5613804

Please sign in to comment.