Parcourir la source

Fix AFAnd String() -> "and" instead of "or"

Michael Dresser il y a 3 ans
Parent
commit
25212855eb
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      pkg/kubecost/allocationfilter.go

+ 1 - 1
pkg/kubecost/allocationfilter.go

@@ -138,7 +138,7 @@ type AllocationFilterAnd struct {
 }
 
 func (af AllocationFilterAnd) String() string {
-	s := "(or"
+	s := "(and"
 	for _, f := range af.Filters {
 		s += fmt.Sprintf(" %s", f)
 	}