From b7c32627e26c0068ae24dd079a5b9acd3015aa79 Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Wed, 27 Jun 2018 10:36:03 -0700 Subject: [PATCH] fix test file coverage --- acme/acme/crypto_util_test.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/acme/acme/crypto_util_test.py b/acme/acme/crypto_util_test.py index 864822131..168489d86 100644 --- a/acme/acme/crypto_util_test.py +++ b/acme/acme/crypto_util_test.py @@ -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