diff options
author | Nicolas Geoffray <ngeoffray@google.com> | 2021-03-24 20:45:38 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2021-03-24 20:45:38 +0000 |
commit | ed35a90d2c6bb26f7f598ff9ed26bce789a69cb8 (patch) | |
tree | 94b154561d35d2f78ebd1240f411e2487b1de556 /java/java_test.go | |
parent | 688ba5bc2b26c4e01bdc34f7ee1674c25d4f7f50 (diff) | |
parent | a35178b10506677ed6c22cfd94df77d44692e423 (diff) |
Merge "Fix "filename too long" issue on Luci caused by test name"
Diffstat (limited to 'java/java_test.go')
-rw-r--r-- | java/java_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/java_test.go b/java/java_test.go index 31eeb6b05..1a79f497b 100644 --- a/java/java_test.go +++ b/java/java_test.go @@ -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) |