From 00eb1f190f2c2dd07879ba1fde179f14af24249d Mon Sep 17 00:00:00 2001 From: Kinar R <42828719+kinaryml@users.noreply.github.com> Date: Mon, 18 Dec 2023 04:57:25 +0530 Subject: [PATCH] Fix typo in holistic_landmarker_test.py --- mediapipe/tasks/python/test/vision/holistic_landmarker_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mediapipe/tasks/python/test/vision/holistic_landmarker_test.py b/mediapipe/tasks/python/test/vision/holistic_landmarker_test.py index 6f27c903d..429ea9810 100644 --- a/mediapipe/tasks/python/test/vision/holistic_landmarker_test.py +++ b/mediapipe/tasks/python/test/vision/holistic_landmarker_test.py @@ -93,7 +93,7 @@ class HolisticLandmarkerTest(parameterized.TestCase): def _expect_landmarks_correct( 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)) for i, elem in enumerate(actual_landmarks):