Skip to content

Commit 95cbc35

Browse files
tests: adjust expected string in ACMECertificateRenew test
Seems an update to the acme package changed the text we are expected. This change updates the test to expect the new variation.
1 parent 293cbca commit 95cbc35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pfSense-pkg-RESTAPI/files/usr/local/pkg/RESTAPI/Tests/APIModelsACMECertificateTestCase.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ class APIModelsACMECertificateTestCase extends TestCase {
8686
$renew = new ACMECertificateRenew(certificate: $cert->name->value, async: false);
8787
$renew->create();
8888
$this->assert_equals($renew->status->value, 'completed');
89-
$this->assert_str_contains($renew->result_log->value, "Renew: '{$cert->a_domainlist->value[0]['name']}'");
89+
$this->assert_str_contains($renew->result_log->value, "Renewing: '{$cert->a_domainlist->value[0]['name']}'");
9090

9191
# Delete the ACME certificate
9292
$cert->delete();

0 commit comments

Comments
 (0)