Fix typo in holistic_landmarker_test.py

This commit is contained in:
Kinar R 2023-12-18 04:57:25 +05:30 committed by GitHub
parent 24fe8eb73a
commit 00eb1f190f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -93,7 +93,7 @@ class HolisticLandmarkerTest(parameterized.TestCase):
def _expect_landmarks_correct( def _expect_landmarks_correct(
self, actual_landmarks, expected_landmarks, margin self, actual_landmarks, expected_landmarks, margin
): ):
# Expects to have the same number of poses detected. # Expects to have the same number of landmarks detected.
self.assertLen(actual_landmarks, len(expected_landmarks)) self.assertLen(actual_landmarks, len(expected_landmarks))
for i, elem in enumerate(actual_landmarks): for i, elem in enumerate(actual_landmarks):