From e678a93570b3bc91212bf54ca3a4a6ea246ff86c Mon Sep 17 00:00:00 2001 From: Shon Feder Date: Mon, 14 Jul 2025 12:34:07 -0400 Subject: [PATCH] Fix spelling of variable --- tests/client_e2e/signal_gatherer.ml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/client_e2e/signal_gatherer.ml b/tests/client_e2e/signal_gatherer.ml index d9a0dab8..234feaf2 100644 --- a/tests/client_e2e/signal_gatherer.ml +++ b/tests/client_e2e/signal_gatherer.ml @@ -38,9 +38,9 @@ module Server = struct let logs = Signal.Decode.logs data in let+ () = dbg_request "logs" request Signal.Pp.logs logs in `OK, Some (Signal.Logs logs) - | unexepected -> + | unexpected -> let+ () = - Lwt_io.eprintf "unexpected endpoint %s -- status %s\n" unexepected + Lwt_io.eprintf "unexpected endpoint %s -- status %s\n" unexpected (Http.Status.to_string `Not_found) in `Not_found, None