diff --git a/tests/functional/scripts/pyi_pkg_resources_provider.py b/tests/functional/scripts/pyi_pkg_resources_provider.py index 7d49e66d8d..7a39e8f9bb 100644 --- a/tests/functional/scripts/pyi_pkg_resources_provider.py +++ b/tests/functional/scripts/pyi_pkg_resources_provider.py @@ -272,7 +272,7 @@ def _listdir_test(pkgname, path, expected): content = resource_listdir(pkgname, path) # Ignore pycache if '__pycache__' in content: - content.remove('__pycache__') # ignore __pycache__ + content.remove('__pycache__') assert sorted(content) == sorted(expected)