From d2ecd7062c281e8dfc1d0f54eb1a2d18ff77a006 Mon Sep 17 00:00:00 2001 From: Rok Mandeljc Date: Sat, 7 Nov 2020 13:57:37 +0100 Subject: [PATCH] tests: pyi_pkg_resources_provider.py: remove duplicated comment --- tests/functional/scripts/pyi_pkg_resources_provider.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)