Fix early return in prototest.AssertElementsMatch (#14467)
This commit is contained in:
parent
14994212c5
commit
9390d71cc5
|
@ -57,7 +57,7 @@ func AssertElementsMatch[V any](
|
|||
}
|
||||
}
|
||||
|
||||
if len(outX) == len(outY) && len(outX) == len(listX) {
|
||||
if len(outX) == len(outY) && len(listX) == len(listY) {
|
||||
return // matches
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue