From 9954cdb8ba01461d4daf7383b0474426b94a0619 Mon Sep 17 00:00:00 2001 From: rasmi Date: Mon, 19 Aug 2024 16:43:02 -0400 Subject: [PATCH] Fix import path for test_feature_extraction_utils.py See https://github.com/huggingface/transformers/pull/32601 --- tests/utils/test_feature_extraction_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/utils/test_feature_extraction_utils.py b/tests/utils/test_feature_extraction_utils.py index d365b4abe9fb55..0d4e4cfb48607a 100644 --- a/tests/utils/test_feature_extraction_utils.py +++ b/tests/utils/test_feature_extraction_utils.py @@ -27,7 +27,7 @@ from transformers.testing_utils import TOKEN, USER, get_tests_dir, is_staging_test -sys.path.append(str(Path(__file__).parent.parent / "utils")) +sys.path.append(str(Path(__file__).parent.parent.parent / "utils")) from test_module.custom_feature_extraction import CustomFeatureExtractor # noqa E402