diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2021-02-06 07:21:13 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-02-06 07:38:49 -0500 |
commit | 2e4b2977c78e254797d07c39e933fd535d4b0cec (patch) | |
tree | 568340a9837fabafee6a818db905d8ec15112d8d /tests/mixins.py | |
parent | b7160a896252bb92ffe921a37e3cde98c5cb78b9 (diff) | |
download | python-coveragepy-git-2e4b2977c78e254797d07c39e933fd535d4b0cec.tar.gz |
refactor: remove unittest.assertCountEqual
Another step toward removing unittest.TestCase.
Diffstat (limited to 'tests/mixins.py')
-rw-r--r-- | tests/mixins.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/mixins.py b/tests/mixins.py index ab0623c0..9d096d4d 100644 --- a/tests/mixins.py +++ b/tests/mixins.py @@ -9,10 +9,10 @@ Some of these are transitional while working toward pure-pytest style. import functools import types +import unittest import pytest -from coverage.backunittest import unittest from coverage.misc import StopEverything |