aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_base.py
diff options
context:
space:
mode:
authorGravatar Sebastiaan Zeeff <[email protected]>2020-02-24 02:10:22 +0100
committerGravatar Sebastiaan Zeeff <[email protected]>2020-02-24 02:10:22 +0100
commitc7ffafeedc44fde40e3bd5dae6c95fbabc75a9d9 (patch)
tree2898e31d0c6416524ae1e1c94904f178b641608b /tests/test_base.py
parentMerge 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.py2
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