summaryrefslogtreecommitdiff
path: root/tests/mixins.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/mixins.py')
-rw-r--r--tests/mixins.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/mixins.py b/tests/mixins.py
index 44b16f6c..dd9b4e3e 100644
--- a/tests/mixins.py
+++ b/tests/mixins.py
@@ -18,7 +18,7 @@ import pytest
from tests.helpers import change_dir, make_file, remove_files
-class PytestBase(object):
+class PytestBase:
"""A base class to connect to pytest in a test class hierarchy."""
@pytest.fixture(autouse=True)
@@ -49,7 +49,7 @@ class PytestBase(object):
self._monkeypatch.delenv(name, raising=False)
-class TempDirMixin(object):
+class TempDirMixin:
"""Provides temp dir and data file helpers for tests."""
# Our own setting: most of these tests run in their own temp directory.