From 62c93ed1f46be66287ff6a734558000ae9c688e9 Mon Sep 17 00:00:00 2001 From: Russell Cohen Date: Thu, 12 Oct 2023 14:59:12 -0400 Subject: [PATCH] Fix server E2E tests --- .../pokemon-service-common/tests/plugins_execution_order.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/pokemon-service-common/tests/plugins_execution_order.rs b/examples/pokemon-service-common/tests/plugins_execution_order.rs index 9981540cb85..bf09387d375 100644 --- a/examples/pokemon-service-common/tests/plugins_execution_order.rs +++ b/examples/pokemon-service-common/tests/plugins_execution_order.rs @@ -43,7 +43,7 @@ async fn plugin_layers_are_executed_in_registration_order() { rcvr.expect_request() }; - app.call(request).await.unwrap(); + app.call(request.into_http02x().unwrap()).await.unwrap(); let output_guard = output.lock().unwrap(); assert_eq!(output_guard.deref(), &vec!["first", "second"]);