diff --git a/tests/conftest.py b/tests/conftest.py index c82d0588d3..38202d59b1 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -299,10 +299,10 @@ os.path.join(ROOT_DIR, "aea", "connections", "scaffold", CONNECTION_YAML), os.path.join(FETCHAI_PREF, "connections", "gym", CONNECTION_YAML), os.path.join(VALORY_REF, "connections", "http_client", CONNECTION_YAML), - os.path.join(FETCHAI_PREF, "connections", "http_server", CONNECTION_YAML), os.path.join(VALORY_REF, "connections", "ledger", CONNECTION_YAML), os.path.join(FETCHAI_PREF, "connections", "local", CONNECTION_YAML), os.path.join(FETCHAI_PREF, "connections", "stub", CONNECTION_YAML), + os.path.join(VALORY_REF, "connections", "http_server", CONNECTION_YAML), os.path.join(VALORY_REF, "connections", "p2p_libp2p", CONNECTION_YAML), os.path.join(VALORY_REF, "connections", "p2p_libp2p_client", CONNECTION_YAML), os.path.join(VALORY_REF, "connections", "p2p_libp2p_mailbox", CONNECTION_YAML), diff --git a/tests/test_aea_builder.py b/tests/test_aea_builder.py index a95985df77..6e2eccd199 100644 --- a/tests/test_aea_builder.py +++ b/tests/test_aea_builder.py @@ -156,7 +156,7 @@ def test_when_package_has_missing_dependency(): # "fetchai/http" protocols. builder.add_component( ComponentType.CONNECTION, - Path(ROOT_DIR) / "packages" / "fetchai" / "connections" / "http_server", + Path(ROOT_DIR) / "packages" / "valory" / "connections" / "http_server", )