Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentAntoine committed Jan 2, 2025
1 parent d41986b commit ce6701f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions datascience/tests/test_pipeline/test_flows/test_logbook.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,10 +335,10 @@ def test_flow(mock_move, reset_test_data):

assert state.is_successful()
final_logbook_reports = read_query(query, db="monitorfish_remote")
assert (~initial_logbook_reports.is_test_message).sum() == 46
assert (~initial_logbook_reports.is_test_message).sum() == 54
assert initial_logbook_reports.is_test_message.sum() == 0

assert (~final_logbook_reports.is_test_message).sum() == 66
assert (~final_logbook_reports.is_test_message).sum() == 74
assert final_logbook_reports.is_test_message.sum() == 1
assert (
final_logbook_reports.loc[
Expand Down

0 comments on commit ce6701f

Please sign in to comment.