Fix type in test

This commit is contained in:
Nick Mowen 2023-06-12 14:45:42 -06:00
parent 90a93df518
commit ef2a748331

View File

@ -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)