From 6e6f8422fca650ea1e3b9bc34d37500391f3061e Mon Sep 17 00:00:00 2001 From: Shane Smiskol Date: Thu, 2 Jun 2022 14:18:40 -0700 Subject: [PATCH] process replay: fix tested_cars old-commit-hash: 6a21cc83ffdae067550542e8dad45ea0cc2fe2b4 --- selfdrive/test/process_replay/test_processes.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/selfdrive/test/process_replay/test_processes.py b/selfdrive/test/process_replay/test_processes.py index 1d91d3ba16..d1354b4ace 100755 --- a/selfdrive/test/process_replay/test_processes.py +++ b/selfdrive/test/process_replay/test_processes.py @@ -181,8 +181,7 @@ if __name__ == "__main__": # check to make sure all car brands are tested if full_test: - tested_cars = {c.lower() for c, _ in segments} - untested = (set(interface_names) - set(excluded_interfaces)) - tested_cars + untested = (set(interface_names) - set(excluded_interfaces)) - {c.lower() for c in tested_cars} assert len(untested) == 0, f"Cars missing routes: {str(untested)}" with concurrent.futures.ProcessPoolExecutor(max_workers=args.jobs) as pool: