Skip to content

Commit b6f32b7

Browse files
committed
Fix test
1 parent b627c95 commit b6f32b7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/test_integration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ def test_main_battlesnake_integration():
4242
def mock_get_agent(original_get_agent):
4343
"""Wrapper to replace agent models with DeterministicModel"""
4444

45-
def wrapper(agent_config, game):
46-
agent = original_get_agent(agent_config, game)
45+
def wrapper(config, prompts, game):
46+
agent = original_get_agent(config, prompts, game)
4747
print("In wrapper, got agent of type ", type(agent))
4848

4949
# Replace model if the agent has one (specifically for MiniSWEAgent)

0 commit comments

Comments
 (0)