aboutsummaryrefslogtreecommitdiff
path: root/test/hello.ml
diff options
context:
space:
mode:
authorClombrong <cromblong@egregore.fun>2025-08-14 23:46:52 +0200
committerClombrong <cromblong@egregore.fun>2025-08-15 00:13:57 +0200
commite4e8a81f030dc599b1d5dc84b9725667c3872124 (patch)
treea7b14daa695e1d5521b07d0fb5a3ff73a225b62b /test/hello.ml
parent1283666e6cc07c3149667dfb3218a0dbae62abd6 (diff)
feat(session): add t type for session data
Diffstat (limited to 'test/hello.ml')
-rw-r--r--test/hello.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/hello.ml b/test/hello.ml
index e91f65f..005db94 100644
--- a/test/hello.ml
+++ b/test/hello.ml
@@ -16,7 +16,7 @@ let main =
}
in
let waiter, wakener = Lwt.wait () in
- try%lwt let* state, update = create config.sasl.jid.domainpart config in
+ try%lwt let* { state; update } = create config.sasl.jid.domainpart config in
S.map (function
| Connected (portal, Logged_in _) -> portal.push None;
Lwt.wakeup wakener ()