aboutsummaryrefslogtreecommitdiff
path: root/tests/configuration_toml.ml
diff options
context:
space:
mode:
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 =