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