diff options
author | Sébastien Dailly <sebastien@dailly.me> | 2025-03-17 09:11:25 +0100 |
---|---|---|
committer | Sébastien Dailly <sebastien@dailly.me> | 2025-03-17 18:59:32 +0100 |
commit | 8b8b730d3ba98d6c9e4e6274844641043b5fefbb (patch) | |
tree | 4cb60dafa05b479d0ca287d501a51db88cecaaa4 /tests/test_migration.ml | |
parent | 7bfbb67d83011f3e1845dcb9e44c3b6a5e93a9da (diff) |
Moved the syntax module in its own library
Diffstat (limited to 'tests/test_migration.ml')
-rw-r--r-- | tests/test_migration.ml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/test_migration.ml b/tests/test_migration.ml index e26f354..17e48cc 100644 --- a/tests/test_migration.ml +++ b/tests/test_migration.ml @@ -27,7 +27,7 @@ let sql_testable = let csv_data_type_testable = make_test (module struct - type t = ImportCSV.DataType.t = + type t = ImportDataTypes.Value.t = | Null | Error of string | Content of string @@ -38,7 +38,7 @@ let csv_data_type_testable = let csv_result = Alcotest.(list @@ array @@ csv_data_type_testable) let data_type_testable = make_test (module ImportDataTypes.Types) -let extern_testable = make_test (module ImportConf.Syntax.Extern) +let extern_testable = make_test (module ImporterSyntax.Extern) let table_testable = make_test (module ImportDataTypes.Table) let int_container_testable = make_test (module ImportContainers.IntSet) @@ -70,11 +70,11 @@ let chunk = let syntax = make_test (module struct - type t = ImportConf.Syntax.t + type t = ImporterSyntax.t let pp format t = Format.fprintf format "%s" - (Otoml.Printer.to_string (ImportConf.Syntax.repr t)) + (Otoml.Printer.to_string (ImporterSyntax.repr t)) let equal t1 t2 = t1 = t2 end) |