aboutsummaryrefslogtreecommitdiff
path: root/weed/glog/glog_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'weed/glog/glog_test.go')
-rw-r--r--weed/glog/glog_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/weed/glog/glog_test.go b/weed/glog/glog_test.go
index 12c3acf3d..4a667259b 100644
--- a/weed/glog/glog_test.go
+++ b/weed/glog/glog_test.go
@@ -125,9 +125,9 @@ func TestInfoDepth(t *testing.T) {
// pull out the line number (between : and ])
msg := m[strings.LastIndex(m, ":")+1:]
- x := strings.Index(msg, "]")
+ x := strings.Index(msg, " ")
if x < 0 {
- t.Errorf("InfoDepth[%d]: missing ']': %q", i, m)
+ t.Errorf("InfoDepth[%d]: missing ' ': %q", i, m)
continue
}
line, err := strconv.Atoi(msg[:x])
@@ -180,7 +180,7 @@ func TestHeader(t *testing.T) {
pid = 1234
Info("test")
var line int
- format := "I0102 15:04:05 1234 glog_test.go:%d] test\n"
+ format := "I0102 15:04:05.067890 glog_test.go:%d test\n"
n, err := fmt.Sscanf(contents(infoLog), format, &line)
if n != 1 || err != nil {
t.Errorf("log format error: %d elements, error %s:\n%s", n, err, contents(infoLog))