File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ func TestLoggingWithVmodule(t *testing.T) {
26
26
logger .Trace ("a message" , "foo" , "bar" )
27
27
have := out .String ()
28
28
// The timestamp is locale-dependent, so we want to trim that off
29
- // "INFO [01-01|00:00:00.000] a messag ..." -> "a messag ..."
29
+ // "INFO [01-01|00:00:00.000] a message ..." -> "a message ..."
30
30
have = strings .Split (have , "]" )[1 ]
31
31
want := " a message foo=bar\n "
32
32
if have != want {
@@ -42,7 +42,7 @@ func TestTerminalHandlerWithAttrs(t *testing.T) {
42
42
logger .Trace ("a message" , "foo" , "bar" )
43
43
have := out .String ()
44
44
// The timestamp is locale-dependent, so we want to trim that off
45
- // "INFO [01-01|00:00:00.000] a messag ..." -> "a messag ..."
45
+ // "INFO [01-01|00:00:00.000] a message ..." -> "a message ..."
46
46
have = strings .Split (have , "]" )[1 ]
47
47
want := " a message baz=bat foo=bar\n "
48
48
if have != want {
You can’t perform that action at this time.
0 commit comments