aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/testing/match_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/testing/match_test.go b/src/testing/match_test.go
index d19036c72d..8c1c5f4452 100644
--- a/src/testing/match_test.go
+++ b/src/testing/match_test.go
@@ -135,8 +135,8 @@ func TestMatcher(t *T) {
parent.level = 1
}
if n, ok := m.fullName(parent, tc.sub); ok != tc.ok {
- t.Errorf("pattern: %q, parent: %q, sub %q: got %v; want %v",
- tc.pattern, tc.parent, tc.sub, ok, tc.ok, n)
+ t.Errorf("for pattern %q, fullName(parent=%q, sub=%q) = %q, ok %v; want ok %v",
+ tc.pattern, tc.parent, tc.sub, n, ok, tc.ok)
}
}
}