Skip to content

Commit

Permalink
chore: fix integrated_tests after upgrading pact consumer crate
Browse files Browse the repository at this point in the history
  • Loading branch information
rholshausen committed Aug 13, 2024
1 parent e3c32f1 commit 090de50
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion integrated_tests/imported_message/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ mod tests {
},
)
.await
.start_mock_server_async(Some("protobuf/transport/grpc"))
.start_mock_server_async(Some("protobuf/transport/grpc"), None)
.await;

let url = mock_server.url();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ mod tests {
},
)
.await
.start_mock_server_async(Some("protobuf/transport/grpc"))
.start_mock_server_async(Some("protobuf/transport/grpc"), None)
.await;

let url = mock_server.url();
Expand Down
2 changes: 1 addition & 1 deletion integrated_tests/imported_without_package/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ mod tests {
},
)
.await
.start_mock_server_async(Some("protobuf/transport/grpc"))
.start_mock_server_async(Some("protobuf/transport/grpc"), None)
.await;

let url = mock_server.url();
Expand Down
2 changes: 1 addition & 1 deletion integrated_tests/matching_maps/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ mod tests {
i
})
.await
.start_mock_server_async(Some("protobuf/transport/grpc"))
.start_mock_server_async(Some("protobuf/transport/grpc"), None)
.await;

let url = mock_server.url();
Expand Down

0 comments on commit 090de50

Please sign in to comment.