Skip to content

Commit 4364ae6

Browse files
committed
fix: correct import paths for maestro test files
1 parent 17e5df4 commit 4364ae6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tests/test_all_agents_instantiation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Verifica se TODOS os 12 agents podem ser criados sem erros.
66
"""
77

8-
from maestro_v10_integrated import Orchestrator
8+
from scripts.maestro_v10_integrated import Orchestrator
99

1010
class MockLLM:
1111
async def generate(self, *args, **kwargs):

tests/test_maestro_data_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# Add project to path
1414
sys.path.insert(0, os.path.dirname(__file__))
1515

16-
from maestro_v10_integrated import Orchestrator
16+
from scripts.maestro_v10_integrated import Orchestrator
1717

1818

1919
# Mock LLM for testing

tests/test_routing_conflicts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Testa edge cases e conflitos no routing do MAESTRO.
66
"""
77

8-
from maestro_v10_integrated import Orchestrator
8+
from scripts.maestro_v10_integrated import Orchestrator
99

1010
class MockLLM:
1111
async def generate(self, *args, **kwargs):

0 commit comments

Comments
 (0)