diff --git a/internal/controller/suite_test.go b/internal/controller/suite_test.go index 850b914..13e357b 100644 --- a/internal/controller/suite_test.go +++ b/internal/controller/suite_test.go @@ -359,7 +359,6 @@ func getMockedKind(zoneName string) (result string) { return } -//nolint:unparam func getMockedRecordsForType(rrsetName, rrsetType string) (result []string) { rrset, _ := readFromRecordsMap(makeCanonical(rrsetName)) if string(*rrset.Type) == rrsetType { @@ -371,7 +370,6 @@ func getMockedRecordsForType(rrsetName, rrsetType string) (result []string) { return } -//nolint:unparam func getMockedTTL(rrsetName, rrsetType string) (result uint32) { rrset, _ := readFromRecordsMap(makeCanonical(rrsetName)) if string(*rrset.Type) == rrsetType { @@ -380,7 +378,6 @@ func getMockedTTL(rrsetName, rrsetType string) (result uint32) { return } -//nolint:unparam func getMockedComment(rrsetName, rrsetType string) (result string) { rrset, _ := readFromRecordsMap(makeCanonical(rrsetName)) if string(*rrset.Type) == rrsetType { @@ -389,7 +386,6 @@ func getMockedComment(rrsetName, rrsetType string) (result string) { return } -//nolint:unparam func getMockedCatalog(zoneName string) (result string) { zone, _ := readFromZonesMap(makeCanonical(zoneName)) result = ptr.Deref(zone.Catalog, "")