From 2b5cf0ca48c358d2ec91007f1a63b4c951583eb5 Mon Sep 17 00:00:00 2001 From: "Chanwut (Mick) Kittivorawong" Date: Sun, 10 Sep 2023 12:30:51 -0700 Subject: [PATCH] fix test --- tests/video_processor/steps/test_objecttype.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/video_processor/steps/test_objecttype.py b/tests/video_processor/steps/test_objecttype.py index 5e6cbef..35d189b 100644 --- a/tests/video_processor/steps/test_objecttype.py +++ b/tests/video_processor/steps/test_objecttype.py @@ -36,7 +36,7 @@ (o.type & (~((o.a | True) & True)), set()), (arr(o.type) | (~((o.a & False) | cast(False, 'int'))), set()), - (arr(o.type == 'car'), set()), + (arr(o.type == 'car'), {'car'}), (F.contained(o.type == 'car', 'intersection'), {'car'}), (o, set()), (camera, set()),