Skip to content

Commit dc10e1d

Browse files
committed
Fix the test.
1 parent 80dfea8 commit dc10e1d

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

tests/unittests/test_creators/test_detections.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,13 @@
2222

2323
def test_valid_input():
2424
message = create_detection_message(
25-
BBOXES, SCORES, ANGLES, LABELS, KPTS, KPTS_SCORES, MASKS
25+
bboxes=BBOXES,
26+
scores=SCORES,
27+
labels=LABELS,
28+
angles=ANGLES,
29+
keypoints=KPTS,
30+
keypoints_scores=KPTS_SCORES,
31+
masks=MASKS,
2632
)
2733

2834
assert isinstance(message, ImgDetectionsExtended)

0 commit comments

Comments
 (0)