aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorClombrong <cromblong@egregore.fun>2025-06-26 16:51:23 +0200
committerClombrong <cromblong@egregore.fun>2025-06-26 21:40:53 +0200
commitbd254f33b81287f2c282b7ec5becd4f7c838549f (patch)
tree3cab06cade35cd435522e7c1a6d9619e6365ff41 /test
parent3dd884417ad78993bf6f3dc59349f20bd3fddfa0 (diff)
refactor(xml): move InvalidStanza exception to Xml
Diffstat (limited to 'test')
-rw-r--r--test/hello.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/hello.ml b/test/hello.ml
index a00eb2e..5bc38ad 100644
--- a/test/hello.ml
+++ b/test/hello.ml
@@ -29,6 +29,6 @@ let main =
OCaml, so... The next best thing is probably printing something. *)
print_endline
(match exn with
- | Stream.InvalidStanza stanza -> "Invalid stanza: " ^ stanza
+ | Xml.InvalidStanza stanza -> "Invalid stanza: " ^ stanza
| _ -> "... and so I stumble back to bed.");
Lwt.fail exn)