diff options
Diffstat (limited to 'android/testing.go')
-rw-r--r-- | android/testing.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android/testing.go b/android/testing.go index f32d745c2..8a9134c75 100644 --- a/android/testing.go +++ b/android/testing.go @@ -394,7 +394,7 @@ func FailIfNoMatchingErrors(t *testing.T, pattern string, errs []error) { if !found { t.Errorf("missing the expected error %q (checked %d error(s))", pattern, len(errs)) for i, err := range errs { - t.Errorf("errs[%d] = %s", i, err) + t.Errorf("errs[%d] = %q", i, err) } } } |