aboutsummaryrefslogtreecommitdiff
path: root/tests/configuration_toml.ml
diff options
context:
space:
mode:
authorSébastien Dailly <sebastien@dailly.me>2024-12-11 22:04:40 +0100
committerSébastien Dailly <sebastien@dailly.me>2024-12-12 14:19:48 +0100
commit39f39919fb4749787393e95503f9814912265a73 (patch)
tree57745ab257e50f9ef4d6924c3c77d51fd8fb4d4d /tests/configuration_toml.ml
parent5a558038874765f20b9dc1bcb1890600e2a2065d (diff)
Review the consistency request
Diffstat (limited to 'tests/configuration_toml.ml')
-rw-r--r--tests/configuration_toml.ml28
1 files changed, 14 insertions, 14 deletions
diff --git a/tests/configuration_toml.ml b/tests/configuration_toml.ml
index 3c8bfc2..e58ff1b 100644
--- a/tests/configuration_toml.ml
+++ b/tests/configuration_toml.ml
@@ -10,21 +10,21 @@ let test_suit =
match toml with
| Error s -> raise (Failure s)
| Ok result ->
- let open ImportConf.Syntax in
let expected =
- {
- target = { file = ""; tab = 1; name = "target" };
- extern_key = Literal "_B";
- intern_key =
- Function
- ( "function",
- [
- Path { alias = None; column = 1 };
- Path { alias = None; column = 2 };
- ] );
- match_rule = None;
- allow_missing = true;
- }
+ ImportConf.Syntax.Extern.
+ {
+ target = { file = ""; tab = 1; name = "target" };
+ extern_key = Literal "_B";
+ intern_key =
+ Function
+ ( "function",
+ [
+ Path { alias = None; column = 1 };
+ Path { alias = None; column = 2 };
+ ] );
+ match_rule = None;
+ allow_missing = true;
+ }
in
let printer s =