aboutsummaryrefslogtreecommitdiffstats
path: root/logger/glog/glog_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'logger/glog/glog_test.go')
-rw-r--r--logger/glog/glog_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/logger/glog/glog_test.go b/logger/glog/glog_test.go
index 30861a48d..b58f3d642 100644
--- a/logger/glog/glog_test.go
+++ b/logger/glog/glog_test.go
@@ -300,7 +300,7 @@ func TestCompileModulePattern(t *testing.T) {
for _, test := range patternTests {
re, err := compileModulePattern(test.input)
if err != nil {
- t.Fatalf("%s: %v", err)
+ t.Fatalf("%s: %v", test.input, err)
}
if re.String() != test.want {
t.Errorf("mismatch for %q: got %q, want %q", test.input, re.String(), test.want)