Skip to content

Commit c184cd1

Browse files
committed
Fix tests
1 parent 271f1d7 commit c184cd1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/aio/test_aio_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -646,7 +646,7 @@ async def test_finish_launch(aio_client: Client):
646646
attributes = {"attribute_key": "attribute_value", "system": False}
647647

648648
result = await aio_client.finish_launch(launch_uuid, end_time, status=status, attributes=attributes)
649-
assert result == RESPONSE_MESSAGE
649+
assert result is None
650650
session.put.assert_called_once()
651651
call_args = session.put.call_args_list[0]
652652
assert expected_uri == call_args[0][0]
@@ -671,7 +671,7 @@ async def test_finish_launch_default_values(aio_client: Client):
671671
end_time = str(1696921416000)
672672

673673
result = await aio_client.finish_launch(launch_uuid, end_time)
674-
assert result == RESPONSE_MESSAGE
674+
assert result is None
675675
session.put.assert_called_once()
676676
call_args = session.put.call_args_list[0]
677677
assert expected_uri == call_args[0][0]

0 commit comments

Comments
 (0)