diff options
author | Sébastien Dailly <sebastien@dailly.me> | 2025-03-01 08:39:02 +0100 |
---|---|---|
committer | Sébastien Dailly <sebastien@dailly.me> | 2025-03-06 20:57:10 +0100 |
commit | 81db1bfd580791910646525e30bc45af34533987 (patch) | |
tree | c610f53c284d3707a3d6fe49486b5c09e66dc41f /tests/confLoader.ml | |
parent | 67320d8f04e1f302306b9aafdaaf4bafcf443839 (diff) |
Rewrite the way to handle filters
Diffstat (limited to 'tests/confLoader.ml')
-rw-r--r-- | tests/confLoader.ml | 6 |
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 |