From 1b8dc18ef640e85e390f086f12af8eba117992f8 Mon Sep 17 00:00:00 2001 From: Muzahid Date: Mon, 5 Apr 2021 18:28:26 +0530 Subject: [PATCH] remove functions imports --- src/tests/test_config_functional.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/tests/test_config_functional.py b/src/tests/test_config_functional.py index 3b973911..1492dbdc 100644 --- a/src/tests/test_config_functional.py +++ b/src/tests/test_config_functional.py @@ -3,10 +3,9 @@ Various tests for config """ import os -import unittest import tempfile -from .test_process import TestProcessProto +from test_process import TestProcessProto from pybitmessage.bmconfigparser import BMConfigParser @@ -16,8 +15,6 @@ class TestProcessConfig(TestProcessProto): def test_config_defaults(self): """Test settings in the generated config""" - self._stop_process() - self._kill_process() config = BMConfigParser() config.read(os.path.join(self.home, 'keys.dat'))