fix system test, since repeat time may vary

This commit is contained in:
Stefan Allius
2024-03-31 23:57:04 +02:00
parent 695d8a8906
commit db319f6aa3

View File

@@ -101,7 +101,7 @@ def ClientConnection():
def checkResponse(data, Msg):
check = bytearray(data)
check[5]= Msg[5] # ignore seq
check[13:17]= Msg[13:17] # ignore timestamp
check[13:18]= Msg[13:18] # ignore timestamp + first byte of repeat time
check[21]= Msg[21] # ignore crc
assert check == Msg