letsencrypt test: fix email match

It seems acme.sh might have been rewriting this with quotes, and has
now stopped doing that.  Fix the match.

Change-Id: I3c363c498580b79a1a9ed07da6ed3ac72807383b
This commit is contained in:
Ian Wienand 2020-08-25 13:13:28 +10:00
parent 60522f90a2
commit 139dd374ec
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ def test_acme_sh_config(host):
config = host.file('/root/.acme.sh/account.conf')
assert config.exists
assert config.contains("^ACCOUNT_EMAIL='le-test@opendev.org'")
assert config.contains("^ACCOUNT_EMAIL=le-test@opendev.org")
def test_certcheck_config(host, zuul_data):
if host.backend.get_hostname() != 'bridge.openstack.org':