mirror of
https://github.com/certbot/certbot.git
synced 2026-06-07 07:42:08 -04:00
Remove subprocess import and reference in test
This commit is contained in:
parent
8858c67ef3
commit
707511006c
2 changed files with 1 additions and 3 deletions
|
|
@ -8,7 +8,6 @@ import fnmatch
|
|||
import logging
|
||||
import re
|
||||
import socket
|
||||
import subprocess
|
||||
import time
|
||||
|
||||
import six
|
||||
|
|
|
|||
|
|
@ -1790,8 +1790,7 @@ class InstallSslOptionsConfTest(util.ApacheTest):
|
|||
"Constants.ALL_SSL_OPTIONS_HASHES must be appended with the sha256 "
|
||||
"hash of {0} when it is updated.".format(one_file))
|
||||
|
||||
@mock.patch("certbot_apache._internal.configurator.subprocess.Popen")
|
||||
def test_openssl_version(self, mock_popen):
|
||||
def test_openssl_version(self):
|
||||
some_string_contents = """
|
||||
SSLOpenSSLConfCmd
|
||||
OpenSSL configuration command
|
||||
|
|
|
|||
Loading…
Reference in a new issue