summaryrefslogtreecommitdiff
path: root/tests/functional
diff options
context:
space:
mode:
authorMarc Mueller <30130371+cdce8p@users.noreply.github.com>2021-05-10 12:37:24 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-05-11 05:55:56 +0200
commitd06c510cdffb633e3a34cc92204609791b01f3be (patch)
tree6b15887b387bca0c818de53a56df17e921a2c7db /tests/functional
parentc55431fb6a9ad36f5b2ee7673b67e96fdb9235ab (diff)
downloadpylint-git-d06c510cdffb633e3a34cc92204609791b01f3be.tar.gz
Fix additional test case
Diffstat (limited to 'tests/functional')
-rw-r--r--tests/functional/m/member/member_checks_py37.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/functional/m/member/member_checks_py37.py b/tests/functional/m/member/member_checks_py37.py
index 8d59b7d80..ebbedbde3 100644
--- a/tests/functional/m/member/member_checks_py37.py
+++ b/tests/functional/m/member/member_checks_py37.py
@@ -1,8 +1,8 @@
# pylint: disable=missing-docstring
-import collections
+import collections.abc
import asyncio
-isinstance([], collections.Iterable)
+isinstance([], collections.abc.Iterable)
async def gen():