File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -405,7 +405,9 @@ async def state_checker() -> None:
405405
406406 checker .cancel ()
407407
408- assert states .get (ConnectionState .CONNECTING , False ), "was in connecting"
408+ assert states .get (ConnectionState .CONNECTING , False ), (
409+ "was in connecting"
410+ )
409411
410412 with pytest .raises (TarantoolNotConnectedError ):
411413 await conn .call ("box.info" )
@@ -776,9 +778,9 @@ async def state_checker() -> None:
776778 checker .cancel ()
777779
778780 assert states .get (ConnectionState .CONNECTING , False ), "was in connecting"
779- assert states .get (
780- ConnectionState . RECONNECTING , False
781- ), "was in reconnecting"
781+ assert states .get (ConnectionState . RECONNECTING , False ), (
782+ "was in reconnecting"
783+ )
782784
783785 with pytest .raises (TarantoolNotConnectedError ):
784786 await conn .call ("box.info" )
You can’t perform that action at this time.
0 commit comments