Skip to content

Commit edde906

Browse files
committed
chore: smoke asserts production issuer post-ACME-switch (fails on STAGING)
1 parent a93a6cc commit edde906

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/live-smoke.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,8 +207,8 @@ async function main() {
207207
console.log(` ${issuer}`);
208208
console.log(` ${subjectLine.replace("\n", "\n ")}`);
209209
console.log(` chain written to ${certPath}`);
210-
if (!issuer.toUpperCase().includes("STAGING")) {
211-
fail(`expected a Let's Encrypt STAGING issuer, got: ${issuer}`);
210+
if (issuer.toUpperCase().includes("STAGING")) {
211+
fail(`expected a production Let's Encrypt issuer, got: ${issuer}`);
212212
}
213213

214214
// 4. delete

0 commit comments

Comments
 (0)