diff --git a/tests/run_integration_tests.py b/tests/run_integration_tests.py index 7b8d7b14..5601d572 100644 --- a/tests/run_integration_tests.py +++ b/tests/run_integration_tests.py @@ -23,7 +23,7 @@ project_root = os.path.abspath(os.path.join(os.path.dirname(__file__), "..")) sys.path.insert(0, project_root) # ensure the examples are importable -from examples.old.delegation_crewai import main as delegation_crewai_main +from examples.delegation_demo import main as delegation_demo_main from examples.old.single_llama_index import main as single_llama_index_main from motleycrew.common import logger, configure_logging from motleycrew.common.exceptions import ( @@ -33,7 +33,7 @@ INTEGRATION_TESTS = { "single_llama_index": single_llama_index_main, - "delegation_crewai": delegation_crewai_main, + "delegation_demo": delegation_demo_main, } IPYNB_INTEGRATION_TESTS = {