mirror of
https://github.com/certbot/certbot.git
synced 2026-05-28 04:34:11 -04:00
Stop cover from failing
This commit is contained in:
parent
b7b3f24da0
commit
2939b62f24
1 changed files with 1 additions and 1 deletions
|
|
@ -50,7 +50,7 @@ class ApacheTest(unittest.TestCase): # pylint: disable=too-few-public-methods
|
|||
|
||||
for vhost_basename in os.listdir(sites_enabled):
|
||||
vhost = os.path.join(sites_enabled, vhost_basename)
|
||||
if not os.path.islink(vhost):
|
||||
if not os.path.islink(vhost): # pragma: no cover
|
||||
os.remove(vhost)
|
||||
target = os.path.join(
|
||||
os.path.pardir, "sites-available", vhost_basename)
|
||||
|
|
|
|||
Loading…
Reference in a new issue