aboutsummaryrefslogtreecommitdiff
path: root/tests/importConf_test.ml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/importConf_test.ml')
-rw-r--r--tests/importConf_test.ml5
1 files changed, 3 insertions, 2 deletions
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