diff options
author | Clombrong <cromblong@egregore.fun> | 2025-06-19 09:04:36 +0200 |
---|---|---|
committer | Clombrong <cromblong@egregore.fun> | 2025-06-19 09:04:36 +0200 |
commit | 74e505159a78e72c817f48131e5267b1e3388400 (patch) | |
tree | acc12002d075bd26eb502b5c9562bce89d4220e5 | |
parent | 2645c33dfb42b924d3369b25807742bd15e4bc67 (diff) |
fix(test): use open! in test instead of open
-rw-r--r-- | test/js/websockets_hello.ml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/js/websockets_hello.ml b/test/js/websockets_hello.ml index 0781e4a..ef1d66d 100644 --- a/test/js/websockets_hello.ml +++ b/test/js/websockets_hello.ml @@ -1,7 +1,7 @@ -open Lwt.Syntax -open Lwt.Infix -open Js_of_ocaml -open Flesh +open! Lwt.Syntax +open! Lwt.Infix +open! Js_of_ocaml +open! Flesh (* https://stackoverflow.com/questions/34929382/what-are-the-differences-between-lwt-async-and-lwt-main-run-on-ocaml-node-js *) let rec run t = |