Merge "Fix "filename too long" issue on Luci caused by test name" am: ed35a90d2c

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

Change-Id: I50916f844b5c8467209e5a2b68b83ec5c7ac5645
This commit is contained in:
Nicolas Geoffray 2021-03-24 21:14:35 +00:00 committed by Automerger Merge Worker
commit 1176680a1e
1 changed files with 1 additions and 1 deletions

View File

@ -831,7 +831,7 @@ func TestJavaSdkLibraryEnforce(t *testing.T) {
}
runTest := func(t *testing.T, info testConfigInfo, expectedErrorPattern string) {
t.Run(fmt.Sprintf("%#v", info), func(t *testing.T) {
t.Run(fmt.Sprintf("%v", info), func(t *testing.T) {
errorHandler := android.FixtureExpectsNoErrors
if expectedErrorPattern != "" {
errorHandler = android.FixtureExpectsAtLeastOneErrorMatchingPattern(expectedErrorPattern)