aboutsummaryrefslogtreecommitdiff
path: root/tests/confLoader.ml
diff options
context:
space:
mode:
authorSébastien Dailly <sebastien@dailly.me>2025-03-01 08:39:02 +0100
committerSébastien Dailly <sebastien@dailly.me>2025-03-06 20:57:10 +0100
commit81db1bfd580791910646525e30bc45af34533987 (patch)
treec610f53c284d3707a3d6fe49486b5c09e66dc41f /tests/confLoader.ml
parent67320d8f04e1f302306b9aafdaaf4bafcf443839 (diff)
Rewrite the way to handle filters
Diffstat (limited to 'tests/confLoader.ml')
-rw-r--r--tests/confLoader.ml6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/confLoader.ml b/tests/confLoader.ml
index 4adedd6..692cda9 100644
--- a/tests/confLoader.ml
+++ b/tests/confLoader.ml
@@ -1,7 +1,9 @@
+let load' : string -> (ImportConf.Syntax.t, string) Result.t =
+ fun content -> Otoml.Parser.from_string content |> ImportConf.t_of_toml
+
(** Read the configuration in toml and return the internal representation *)
let load : string -> ImportConf.Syntax.t =
- fun content ->
- Otoml.Parser.from_string content |> ImportConf.t_of_toml |> Result.get_ok
+ fun content -> Result.get_ok (load' content)
let conf =
load