Skip to content

Commit

Permalink
change name from BaselineSolver to baseline
Browse files Browse the repository at this point in the history
The combinatorial auction test did never create an alert because the
name of the baseline solver was written incorrectly. The name is fixed
now.
  • Loading branch information
fhenneke committed Apr 23, 2024
1 parent 3a3a869 commit 8ae476a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/monitoring_tests/combinatorial_auction_surplus_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def run_combinatorial_auction(self, competition_data: dict[str, Any]) -> bool:
f"Absolute difference: {float(a_abs_eth):.5f}ETH",
]
)
if "BaselineSolver" in solutions_filtering_winner:
if "baseline" in solutions_filtering_winner:
self.alert(log_output)
elif (
a_abs_eth > SURPLUS_ABSOLUTE_DEVIATION_ETH / 10
Expand Down

0 comments on commit 8ae476a

Please sign in to comment.