safety test: fix incorrect error message (#1702)

don't add a generator
This commit is contained in:
Shane Smiskol 2023-10-31 18:04:40 -07:00 committed by GitHub
parent 7304f92663
commit 120ea2c5bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1007,7 +1007,7 @@ class PandaSafetyTest(PandaSafetyTestBase):
if attr.startswith('TestHonda'):
# exceptions for common msgs across different hondas
tx = list(filter(lambda m: m[0] not in [0x1FA, 0x30C, 0x33D], tx))
all_tx.append([m[0], m[1], attr] for m in tx)
all_tx.append([[m[0], m[1], attr] for m in tx])
# make sure we got all the msgs
self.assertTrue(len(all_tx) >= len(test_files)-1)