From ef2a7483315b8563bb9d87a4e823e9f989a2b267 Mon Sep 17 00:00:00 2001 From: Nick Mowen Date: Mon, 12 Jun 2023 14:45:42 -0600 Subject: [PATCH] Fix type in test --- frigate/test/test_video.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/test/test_video.py b/frigate/test/test_video.py index 0a4d4d471..e5f7e83fd 100644 --- a/frigate/test/test_video.py +++ b/frigate/test/test_video.py @@ -189,4 +189,4 @@ class TestObjectBoundingBoxes(unittest.TestCase): box_c = [899, 128, 1080, 175] assert intersection(box_a, box_b) == None - assert intersection(box_b, box_c) == [899, 128, 985, 151] + assert intersection(box_b, box_c) == (899, 128, 985, 151)