diff options
Diffstat (limited to 'bp2build/testing.go')
-rw-r--r-- | bp2build/testing.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bp2build/testing.go b/bp2build/testing.go index 92a9bf1b5..43baf98db 100644 --- a/bp2build/testing.go +++ b/bp2build/testing.go @@ -230,11 +230,11 @@ func (b BazelTestResult) CompareAllBazelTargets(t *testing.T, description string actualTargets := b.buildFileToTargets // Generate the sorted set of directories to check. - dirsToCheck := android.SortedStringKeys(expectedTargets) + dirsToCheck := android.SortedKeys(expectedTargets) if !ignoreUnexpected { // This needs to perform an exact match so add the directories in which targets were // produced to the list of directories to check. - dirsToCheck = append(dirsToCheck, android.SortedStringKeys(actualTargets)...) + dirsToCheck = append(dirsToCheck, android.SortedKeys(actualTargets)...) dirsToCheck = android.SortedUniqueStrings(dirsToCheck) } @@ -579,7 +579,7 @@ func makeBazelTargetHostOrDevice(typ, name string, attrs AttrNameToString, hod a if name != "" { attrStrings = append(attrStrings, fmt.Sprintf(` name = "%s",`, name)) } - for _, k := range android.SortedStringKeys(attrs) { + for _, k := range android.SortedKeys(attrs) { attrStrings = append(attrStrings, fmt.Sprintf(" %s = %s,", k, attrs[k])) } return fmt.Sprintf(`%s( |