Skip to content

Commit

Permalink
fixed test
Browse files Browse the repository at this point in the history
  • Loading branch information
thusser committed Jun 17, 2024
1 parent be8f5d9 commit 5bdf91f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/images/processors/exptime/test_exptime.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ async def test_call(mocker):

assert await estimator(image) == image

estimator._calc_exp_time.called_once_with(image)
estimator._set_exp_time.called_once_with(image, 1.0)
estimator._calc_exp_time.assert_called_once_with(image)
estimator._set_exp_time.assert_called_once_with(image, 1.0)


def test_set_exp_time_lower(mocker):
Expand Down

0 comments on commit 5bdf91f

Please sign in to comment.