mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-05 04:36:52 +00:00
Fix collections ABCs deprecation warning.
Signed-off-by: Jintao Zhang <zhangjintao9020@gmail.com>
This commit is contained in:
parent
7801a17adc
commit
5188a146c2
2 changed files with 14 additions and 4 deletions
|
|
@ -1,5 +1,5 @@
|
|||
"""Tests for flake8.plugins.manager.PluginTypeManager."""
|
||||
import collections
|
||||
import sys
|
||||
|
||||
import mock
|
||||
import pytest
|
||||
|
|
@ -7,6 +7,11 @@ import pytest
|
|||
from flake8 import exceptions
|
||||
from flake8.plugins import manager
|
||||
|
||||
if sys.version_info >= (3, 3):
|
||||
import collections.abc as collections_abc
|
||||
else:
|
||||
import collections as collections_abc
|
||||
|
||||
TEST_NAMESPACE = "testing.plugin-type-manager"
|
||||
|
||||
|
||||
|
|
@ -86,7 +91,7 @@ def test_generate_call_function():
|
|||
'method_name', optmanager,
|
||||
)
|
||||
|
||||
assert isinstance(func, collections.Callable)
|
||||
assert isinstance(func, collections_abc.Callable)
|
||||
assert func(plugin) is optmanager
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue