From 2742a4715a5e3205b0a4bc796f81a5e47d0d7c11 Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Mon, 9 Feb 2026 22:36:20 -0500 Subject: [PATCH] fix bug --- tests/unit/t_headers.ml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/unit/t_headers.ml b/tests/unit/t_headers.ml index 4f614483..c45f9649 100644 --- a/tests/unit/t_headers.ml +++ b/tests/unit/t_headers.ml @@ -17,8 +17,7 @@ let test_header_too_large () = let _ = Request.Private_.parse_req_start_exn ~client_addr ~buf ~get_time_s:(fun _ -> 0.) str in failwith "should have failed with 431" - with Common_.Bad_req (431, _) -> - () (* expected *) + with Tiny_httpd_core.Response.Bad_req (431, _) -> () (* expected *) let () = test_header_too_large ()