fix: Fix test issue where landmark variable name wrongly used

This commit is contained in:
yakhyo
2025-11-15 21:28:21 +09:00
parent 2c78f39e5d
commit 8e218321a4

View File

@@ -87,7 +87,7 @@ def test_different_image_sizes(landmark_model, mock_bbox):
def test_bbox_list_format(landmark_model, mock_image):
bbox_list = [100, 100, 300, 300]
landmarks = landmark_model.get_landmarks(mock_image, mock_bbox)
landmarks = landmark_model.get_landmarks(mock_image, bbox_list)
assert landmarks.shape == (106, 2), "Should work with bbox as list"