From 9b28558904545d54da2aa69b306bfd7ddedefdb3 Mon Sep 17 00:00:00 2001 From: Thomas Limoncelli Date: Wed, 3 Dec 2025 10:42:12 -0500 Subject: [PATCH] fixup! --- integrationTest/integration_test.go | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/integrationTest/integration_test.go b/integrationTest/integration_test.go index b45cb07c6..6492aa357 100644 --- a/integrationTest/integration_test.go +++ b/integrationTest/integration_test.go @@ -2033,11 +2033,6 @@ func makeTests() []*TestGroup { ), ), - // This MUST be the last test. - testgroup("final", - tc("final", txt("final", `TestDNSProviders was successful!`)), - ), - testgroup("SMIMEA", requires(providers.CanUseSMIMEA), 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, // 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