aboutsummaryrefslogtreecommitdiff
path: root/tests/test_migration.ml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_migration.ml')
-rw-r--r--tests/test_migration.ml8
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)