diff --git a/commands/gz_test.go b/commands/gz_test.go index db5dbfb51..c53009a07 100644 --- a/commands/gz_test.go +++ b/commands/gz_test.go @@ -18,8 +18,7 @@ func TestFormatTypes(t *testing.T) { test_data/$DOMAIN.zone zone test_data/$DOMAIN.zone.zone */ - //for _, domain := range []string{"simple.com", "example.org", "apex.com", "ds.com"} { - for _, domain := range []string{"simple.com"} { + for _, domain := range []string{"simple.com", "example.org", "apex.com", "ds.com"} { t.Run(domain+"/js", func(t *testing.T) { testFormat(t, domain, "js") }) t.Run(domain+"/djs", func(t *testing.T) { testFormat(t, domain, "djs") }) t.Run(domain+"/tsv", func(t *testing.T) { testFormat(t, domain, "tsv") }) diff --git a/integrationTest/helpers_integration_test.go b/integrationTest/helpers_integration_test.go index baa47b942..a289513f2 100644 --- a/integrationTest/helpers_integration_test.go +++ b/integrationTest/helpers_integration_test.go @@ -148,7 +148,7 @@ 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) + //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) diff --git a/providers/bind/bindProvider.go b/providers/bind/bindProvider.go index bc1c575cf..525e8c74f 100644 --- a/providers/bind/bindProvider.go +++ b/providers/bind/bindProvider.go @@ -181,9 +181,9 @@ func (c *bindProvider) GetZoneRecords(domain string, meta map[string]string) (mo ff, ), ) - fmt.Printf("DEBUG: Reading zonefile %q\n", zonefile) - fmt.Printf("DEBUG: Meta %+v\n", meta) - fmt.Printf("DEBUG: Domain Names %+v\n", ff) + //fmt.Printf("DEBUG: Reading zonefile %q\n", zonefile) + //fmt.Printf("DEBUG: Meta %+v\n", meta) + //fmt.Printf("DEBUG: Domain Names %+v\n", ff) content, err := os.ReadFile(zonefile) if os.IsNotExist(err) {