mirror of
https://github.com/certbot/certbot.git
synced 2026-06-04 14:26:10 -04:00
fix test file coverage
This commit is contained in:
parent
0a7a58d1b4
commit
b7c32627e2
1 changed files with 2 additions and 1 deletions
|
|
@ -45,7 +45,8 @@ class SSLSocketAndProbeSNITest(unittest.TestCase):
|
|||
|
||||
def tearDown(self):
|
||||
if self.server_thread.is_alive():
|
||||
self.server_thread.join()
|
||||
# The thread may have already terminated.
|
||||
self.server_thread.join() # pragma: no cover
|
||||
|
||||
def _probe(self, name):
|
||||
from acme.crypto_util import probe_sni
|
||||
|
|
|
|||
Loading…
Reference in a new issue