From c0bac697378144ca0ff2e76e8492168442c7dd44 Mon Sep 17 00:00:00 2001 From: Ivan Goncharov Date: Wed, 13 Nov 2024 16:45:36 +0100 Subject: [PATCH] fix tests --- apollo-router/tests/integration/supergraph.rs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/apollo-router/tests/integration/supergraph.rs b/apollo-router/tests/integration/supergraph.rs index 6ce3173781..486ae5d687 100644 --- a/apollo-router/tests/integration/supergraph.rs +++ b/apollo-router/tests/integration/supergraph.rs @@ -64,12 +64,12 @@ async fn test_supergraph_allow_to_change_http1_max_headers() -> Result<(), BoxEr } #[tokio::test(flavor = "multi_thread")] -async fn test_supergraph_allow_to_change_http1_max_buf_size() -> Result<(), BoxError> { +async fn test_supergraph_errors_on_http1_header_that_does_not_fit_inside_buffer() -> Result<(), BoxError> { let mut router = IntegrationTest::builder() .config( r#" supergraph: - experimental_http1_max_buf_size: 1000000 + experimental_http1_max_buf_size: 100000 "#, ) .build() @@ -89,8 +89,7 @@ async fn test_supergraph_allow_to_change_http1_max_buf_size() -> Result<(), BoxE } #[tokio::test(flavor = "multi_thread")] -async fn test_supergraph_errors_on_http1_header_that_does_not_fit_inside_buffer( -) -> Result<(), BoxError> { +async fn test_supergraph_allow_to_change_http1_max_buf_size() -> Result<(), BoxError> { let mut router = IntegrationTest::builder() .config( r#"