@@ -666,7 +666,7 @@ async def test_subscribe_states_camera_oversized_done_chunk_does_not_tombstone(
666666
667667
668668@pytest .mark .parametrize (
669- "cmd, req" ,
669+ ( "cmd" , " req") ,
670670 [
671671 (dict (key = 1 ), dict (key = 1 )),
672672 (
@@ -700,7 +700,7 @@ async def test_cover_command_legacy(
700700
701701
702702@pytest .mark .parametrize (
703- "cmd, req" ,
703+ ( "cmd" , " req") ,
704704 [
705705 (dict (key = 1 ), dict (key = 1 )),
706706 (dict (key = 1 , position = 0.5 ), dict (key = 1 , has_position = True , position = 0.5 )),
@@ -723,7 +723,7 @@ async def test_cover_command(
723723
724724
725725@pytest .mark .parametrize (
726- "cmd, req" ,
726+ ( "cmd" , " req") ,
727727 [
728728 (dict (key = 1 ), dict (key = 1 )),
729729 (dict (key = 1 , state = True ), dict (key = 1 , has_state = True , state = True )),
@@ -759,7 +759,7 @@ async def test_fan_command(
759759
760760
761761@pytest .mark .parametrize (
762- "cmd, req" ,
762+ ( "cmd" , " req") ,
763763 [
764764 (dict (key = 1 ), dict (key = 1 )),
765765 (dict (key = 1 , state = True ), dict (key = 1 , has_state = True , state = True )),
@@ -822,7 +822,7 @@ async def test_light_command(
822822
823823
824824@pytest .mark .parametrize (
825- "cmd, req" ,
825+ ( "cmd" , " req") ,
826826 [
827827 (dict (key = 1 , state = False ), dict (key = 1 , state = False )),
828828 (dict (key = 1 , state = True ), dict (key = 1 , state = True )),
@@ -942,7 +942,7 @@ async def test_water_heater_command(
942942
943943
944944@pytest .mark .parametrize (
945- "cmd, req" ,
945+ ( "cmd" , " req") ,
946946 [
947947 (
948948 dict (key = 1 , preset = ClimatePreset .HOME ),
@@ -965,7 +965,7 @@ async def test_climate_command_legacy(
965965
966966
967967@pytest .mark .parametrize (
968- "cmd, req" ,
968+ ( "cmd" , " req") ,
969969 [
970970 (
971971 dict (key = 1 , mode = ClimateMode .HEAT ),
@@ -1020,7 +1020,7 @@ async def test_climate_command(
10201020
10211021
10221022@pytest .mark .parametrize (
1023- "cmd, req" ,
1023+ ( "cmd" , " req") ,
10241024 [
10251025 (dict (key = 1 , state = 0.0 ), dict (key = 1 , state = 0.0 )),
10261026 (dict (key = 1 , state = 100.0 ), dict (key = 1 , state = 100.0 )),
@@ -1036,7 +1036,7 @@ async def test_number_command(
10361036
10371037
10381038@pytest .mark .parametrize (
1039- "cmd, req" ,
1039+ ( "cmd" , " req") ,
10401040 [
10411041 (
10421042 dict (key = 1 , year = 2024 , month = 2 , day = 29 ),
@@ -1061,7 +1061,7 @@ async def test_date_command(
10611061
10621062
10631063@pytest .mark .parametrize (
1064- "cmd, req" ,
1064+ ( "cmd" , " req") ,
10651065 [
10661066 (
10671067 dict (key = 1 , hour = 12 , minute = 30 , second = 30 ),
@@ -1086,7 +1086,7 @@ async def test_time_command(
10861086
10871087
10881088@pytest .mark .parametrize (
1089- "cmd, req" ,
1089+ ( "cmd" , " req") ,
10901090 [
10911091 (
10921092 dict (key = 1 , epoch_seconds = 1735648230 ),
@@ -1108,7 +1108,7 @@ async def test_datetime_command(
11081108
11091109
11101110@pytest .mark .parametrize (
1111- "cmd, req" ,
1111+ ( "cmd" , " req") ,
11121112 [
11131113 (dict (key = 1 , command = LockCommand .LOCK ), dict (key = 1 , command = LockCommand .LOCK )),
11141114 (
@@ -1132,7 +1132,7 @@ async def test_lock_command(
11321132
11331133
11341134@pytest .mark .parametrize (
1135- "cmd, req" ,
1135+ ( "cmd" , " req") ,
11361136 [
11371137 (dict (key = 1 ), dict (key = 1 )),
11381138 (dict (key = 1 , position = 1.0 ), dict (key = 1 , position = 1.0 , has_position = True )),
@@ -1150,7 +1150,7 @@ async def test_valve_command(
11501150
11511151
11521152@pytest .mark .parametrize (
1153- "cmd, req" ,
1153+ ( "cmd" , " req") ,
11541154 [
11551155 (dict (key = 1 ), dict (key = 1 )),
11561156 (dict (key = 1 , position = 0.5 ), dict (key = 1 , has_position = True , position = 0.5 )),
@@ -1173,7 +1173,7 @@ async def test_valve_command_version_1_1(
11731173
11741174
11751175@pytest .mark .parametrize (
1176- "cmd, req" ,
1176+ ( "cmd" , " req") ,
11771177 [
11781178 (dict (key = 1 , state = "One" ), dict (key = 1 , state = "One" )),
11791179 (dict (key = 1 , state = "Two" ), dict (key = 1 , state = "Two" )),
@@ -1189,7 +1189,7 @@ async def test_select_command(
11891189
11901190
11911191@pytest .mark .parametrize (
1192- "cmd, req" ,
1192+ ( "cmd" , " req") ,
11931193 [
11941194 (
11951195 dict (key = 1 , command = MediaPlayerCommand .MUTE ),
@@ -1225,7 +1225,7 @@ async def test_media_player_command(
12251225
12261226
12271227@pytest .mark .parametrize (
1228- "cmd, req" ,
1228+ ( "cmd" , " req") ,
12291229 [
12301230 (dict (key = 1 ), dict (key = 1 )),
12311231 ],
@@ -1240,7 +1240,7 @@ async def test_button_command(
12401240
12411241
12421242@pytest .mark .parametrize (
1243- "cmd, req" ,
1243+ ( "cmd" , " req") ,
12441244 [
12451245 (dict (key = 1 , state = True ), dict (key = 1 , state = True , has_state = True )),
12461246 (dict (key = 1 , state = False ), dict (key = 1 , state = False , has_state = True )),
@@ -1473,7 +1473,7 @@ async def test_request_image_stream(auth_client: APIClient) -> None:
14731473
14741474
14751475@pytest .mark .parametrize (
1476- "cmd, req" ,
1476+ ( "cmd" , " req") ,
14771477 [
14781478 (
14791479 dict (key = 1 , command = AlarmControlPanelCommand .ARM_AWAY ),
@@ -1499,7 +1499,7 @@ async def test_alarm_panel_command(
14991499
15001500
15011501@pytest .mark .parametrize (
1502- "cmd, req" ,
1502+ ( "cmd" , " req") ,
15031503 [
15041504 (dict (key = 1 , state = "hello world" ), dict (key = 1 , state = "hello world" )),
15051505 (dict (key = 1 , state = "goodbye" ), dict (key = 1 , state = "goodbye" )),
@@ -1515,7 +1515,7 @@ async def test_text_command(
15151515
15161516
15171517@pytest .mark .parametrize (
1518- "cmd, req" ,
1518+ ( "cmd" , " req") ,
15191519 [
15201520 (
15211521 dict (key = 1 , command = UpdateCommand .INSTALL ),
0 commit comments