Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
evangriffiths committed Feb 15, 2024
1 parent 8ceda37 commit aa2f4a7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def evaluate_research_predict(self, market_question: str) -> bm.Prediction:


@pytest.fixture
def dummy_agent_no_prediciton() -> DummyAgentNoPrediction:
def dummy_agent_no_prediction() -> DummyAgentNoPrediction:
return DummyAgentNoPrediction()


Expand All @@ -64,11 +64,11 @@ def test_agent_prediction(dummy_agent: DummyAgent) -> None:


def test_benchmark_run(
dummy_agent: DummyAgent, dummy_agent_no_prediciton: DummyAgentNoPrediction
dummy_agent: DummyAgent, dummy_agent_no_prediction: DummyAgentNoPrediction
) -> None:
benchmarker = bm.Benchmarker(
markets=get_markets(number=1, source=MarketSource.MANIFOLD),
agents=[dummy_agent, dummy_agent_no_prediciton],
agents=[dummy_agent, dummy_agent_no_prediction],
)
benchmarker.run_agents()
benchmarker.generate_markdown_report()
Expand Down

0 comments on commit aa2f4a7

Please sign in to comment.