diff options
author | 2020-02-24 02:10:22 +0100 | |
---|---|---|
committer | 2020-02-24 02:10:22 +0100 | |
commit | c7ffafeedc44fde40e3bd5dae6c95fbabc75a9d9 (patch) | |
tree | 2898e31d0c6416524ae1e1c94904f178b641608b /tests/test_base.py | |
parent | Merge branch 'master' into python38-migration (diff) |
Use realistic mixin implementation
Instead of using the mixin class bare, I've now included into a class tha subclasses unittest.TestCase as that's how it's going to be used "in the wild".
Diffstat (limited to 'tests/test_base.py')
-rw-r--r-- | tests/test_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_base.py b/tests/test_base.py index 23abb1dfd..235a2ee6c 100644 --- a/tests/test_base.py +++ b/tests/test_base.py @@ -6,7 +6,7 @@ import unittest.mock from tests.base import LoggingTestsMixin, _CaptureLogHandler -class LoggingTestCase(LoggingTestsMixin): +class LoggingTestCase(LoggingTestsMixin, unittest.TestCase): pass |