From 14babb257b744323b70e18eb3ebffe848e6b70ee Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sun, 5 Oct 2014 10:00:02 -0400 Subject: Make the test helpers more correct on their own. --- tests/coveragetest.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'tests') diff --git a/tests/coveragetest.py b/tests/coveragetest.py index 19fc0612..a680ed46 100644 --- a/tests/coveragetest.py +++ b/tests/coveragetest.py @@ -8,8 +8,7 @@ from coverage.backward import StringIO, import_local_file from coverage.backward import importlib # pylint: disable=unused-import from coverage.control import _TEST_NAME_FILE from coverage.test_helpers import ( - ModuleAwareMixin, SysPathAwareMixin, EnvironmentAwareMixin, - StdStreamCapturingMixin, TempDirMixin, + EnvironmentAwareMixin, StdStreamCapturingMixin, TempDirMixin, ) from tests.backtest import run_command @@ -19,8 +18,6 @@ from tests.backtest import run_command OK, ERR = 0, 1 class CoverageTest( - ModuleAwareMixin, - SysPathAwareMixin, EnvironmentAwareMixin, StdStreamCapturingMixin, TempDirMixin, -- cgit v1.2.1