Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
Signed-off-by: Arik Hadas <[email protected]>
  • Loading branch information
ahadas committed Jun 10, 2024
1 parent 524f970 commit ede3c41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/lib/ref/ref.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ func RefSet(ref *v1.ObjectReference) bool {

// Equals comparison.
// May be used with `nil` pointers.
func Equals(refA, refB *v1.ObjectReference) bool {
func DeepEquals(refA, refB *v1.ObjectReference) bool {

Check warning on line 36 in pkg/lib/ref/ref.go

View check run for this annotation

Codecov / codecov/patch

pkg/lib/ref/ref.go#L36

Added line #L36 was not covered by tests
if refA == nil || refB == nil {
return false
}
Expand Down

0 comments on commit ede3c41

Please sign in to comment.