Skip to content

Commit ae81e6c

Browse files
committed
test: fix zeo test assertion
1 parent 6532f43 commit ae81e6c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_a01_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,13 +174,13 @@ async def test_update_values(
174174

175175
message = build_rpc_response(
176176
{
177-
203: 6,
177+
203: 6, # spinning
178178
}
179179
)
180180
response_queue.put(mqtt_packet.gen_publish(MQTT_PUBLISH_TOPIC, payload=message))
181181

182182
data = await connected_a01_mqtt_client.update_values([RoborockZeoProtocol.STATE])
183-
assert data.get(RoborockZeoProtocol.STATE) == "spinningdata point number="
183+
assert data.get(RoborockZeoProtocol.STATE) == "spinning"
184184

185185

186186
async def test_publish_failure(

0 commit comments

Comments
 (0)