Merge "Correct error in documentation of AssertDeepEquals" am: 6872d651b6

Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1628681

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: Id8808bb8b702204c8ab83d184a1978ca23e13174
This commit is contained in:
Paul Duffin 2021-03-11 17:53:54 +00:00 committed by Automerger Merge Worker
commit a073463fb6
1 changed files with 1 additions and 1 deletions

View File

@ -608,7 +608,7 @@ func (h *TestHelper) AssertArrayString(message string, expected, actual []string
}
}
// AssertArrayString checks if the expected and actual values are equal using reflect.DeepEqual and
// AssertDeepEquals checks if the expected and actual values are equal using reflect.DeepEqual and
// if they are not then it reports an error prefixed with the supplied message and including a
// reason for why it failed.
func (h *TestHelper) AssertDeepEquals(message string, expected interface{}, actual interface{}) {