diff --git a/integrationTest/helpers_integration_test.go b/integrationTest/helpers_integration_test.go index 85ae62e40..baa47b942 100644 --- a/integrationTest/helpers_integration_test.go +++ b/integrationTest/helpers_integration_test.go @@ -40,6 +40,7 @@ func getDomainConfigWithNameservers(t *testing.T, prv providers.DNSServiceProvid dc := &models.DomainConfig{ Name: domainName, } + dc.PostProcess() // fix up nameservers ns, err := prv.GetNameservers(domainName) @@ -147,6 +148,8 @@ func makeChanges(t *testing.T, prv providers.DNSServiceProvider, dc *models.Doma return } + fmt.Printf("DEBUG: Running test %q: Names %q %q %q\n", desc, dom.Name, dom.NameRaw, dom.NameUnicode) + // get and run corrections for first time _, corrections, actualChangeCount, err := zonerecs.CorrectZoneRecords(prv, dom) if err != nil {