From 8b8b730d3ba98d6c9e4e6274844641043b5fefbb Mon Sep 17 00:00:00 2001 From: Sébastien Dailly Date: Mon, 17 Mar 2025 09:11:25 +0100 Subject: Moved the syntax module in its own library --- tests/importConf_test.ml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'tests/importConf_test.ml') diff --git a/tests/importConf_test.ml b/tests/importConf_test.ml index 481b66c..5f98423 100644 --- a/tests/importConf_test.ml +++ b/tests/importConf_test.ml @@ -9,13 +9,14 @@ let check = Alcotest.(check (list Test_migration.extern_testable) "") configuration. *) let test_get_dependencies_for_source = "get_dependancies_for_table" >:: fun _ -> - let result = ImportConf.get_dependancies_for_table conf conf.source + let result = ImporterSyntax.get_dependancies_for_table conf conf.source and expected = [ external_other ] in check expected result let test_get_dependencies_for_other = "get_dependancies_for_table" >:: fun _ -> - let result = ImportConf.get_dependancies_for_table conf external_table_other + let result = + ImporterSyntax.get_dependancies_for_table conf external_table_other and expected = [ external_last ] in check expected result -- cgit v1.2.3