From af25fcf53a75b78e1f42ae4dd16fd4924f1c1b0d Mon Sep 17 00:00:00 2001 From: Joerg Henrichs Date: Mon, 28 Oct 2024 23:01:47 +1100 Subject: [PATCH] #2758 Fixed include path to only pick up files for LFRic. --- .../tests/domain/lfric/lfric_extract_driver_creator_test.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/psyclone/tests/domain/lfric/lfric_extract_driver_creator_test.py b/src/psyclone/tests/domain/lfric/lfric_extract_driver_creator_test.py index ec84c5e4ea..e0749b812d 100644 --- a/src/psyclone/tests/domain/lfric/lfric_extract_driver_creator_test.py +++ b/src/psyclone/tests/domain/lfric/lfric_extract_driver_creator_test.py @@ -69,7 +69,8 @@ def init_module_manager(): # to read extracted data from a file) relative to the infrastructure path: psyclone_root = os.path.dirname(os.path.dirname(os.path.dirname( os.path.dirname(os.path.dirname(infrastructure_path))))) - read_mod_path = os.path.join(psyclone_root, "lib", "extract", "standalone") + read_mod_path = os.path.join(psyclone_root, "lib", "extract", + "standalone", "lfric") # Enforce loading of the default ModuleManager ModuleManager._instance = None