Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
leoschwarz committed Jul 2, 2024
1 parent e05a620 commit a00f824
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/unit/tools/cli/test_correct_baseline.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ def test_correct_baseline_when_other_variant(mocker) -> None:
input_imzml=mock_input_imzml, output_imzml=mock_output_imzml, baseline_variant=BaselineVariants.TopHat
)

construct_correct_baseline.assert_called_once_with(parallel_config=mocker.ANY, variant=BaselineVariants.TopHat)
construct_correct_baseline.assert_called_once_with(
parallel_config=mocker.ANY, variant=BaselineVariants.TopHat, window_size=5000, window_unit="ppm"
)
construct_correct_baseline.return_value.evaluate_file.assert_called_once_with(
construct_imzml_read_file.return_value, construct_imzml_write_file.return_value
)
Expand Down

0 comments on commit a00f824

Please sign in to comment.