We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29db434 commit bd8b189Copy full SHA for bd8b189
tests/test_instruments_setupper.py
@@ -36,7 +36,9 @@ def test_instruments_setupper_causes_instruments_lifespan() -> None:
36
with current_setupper:
37
pass
38
39
- all_mock_calls: typing.Final = [one_mocked_instrument.mock_calls for one_mocked_instrument in current_setupper.instrument_box.instruments]
+ all_mock_calls: typing.Final = [
40
+ one_mocked_instrument.mock_calls for one_mocked_instrument in current_setupper.instrument_box.instruments
41
+ ]
42
expected_successful_instrument_calls: typing.Final = [
43
mock.call.is_ready(),
44
mock.call.bootstrap(),
0 commit comments