This commit is contained in:
Thomas Limoncelli 2025-12-03 10:42:12 -05:00
parent 54542e24e5
commit 9b28558904
No known key found for this signature in database

View file

@ -2033,11 +2033,6 @@ func makeTests() []*TestGroup {
), ),
), ),
// This MUST be the last test.
testgroup("final",
tc("final", txt("final", `TestDNSProviders was successful!`)),
),
testgroup("SMIMEA", testgroup("SMIMEA",
requires(providers.CanUseSMIMEA), requires(providers.CanUseSMIMEA),
tc("SMIMEA record", smimea("_443._tcp", 3, 1, 1, sha256hash)), tc("SMIMEA record", smimea("_443._tcp", 3, 1, 1, sha256hash)),
@ -2060,6 +2055,12 @@ func makeTests() []*TestGroup {
// every quarter. There may be library updates, API changes, // every quarter. There may be library updates, API changes,
// etc. // etc.
// This SHOULD be the last test. We do this so that we always
// leave zones with a single TXT record exclaming our success.
// Nothing depends on this record existing or should depend on it.
testgroup("final",
tc("final", txt("final", `TestDNSProviders was successful!`)),
),
} }
return tests return tests