diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2023-01-03 10:34:06 -0700 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2023-01-05 19:48:17 -0700 |
commit | df62eb5d4c92756914ce57a1b6219b39876331f6 (patch) | |
tree | eacfd2c70bb085f9446ce0d6c6db5a8a77631ac4 /lib/textui/log_test.go | |
parent | 39dfaa5af4b628eee55b4aa583abf72ef5833f32 (diff) |
Try to get log-lines to be shorter
Diffstat (limited to 'lib/textui/log_test.go')
-rw-r--r-- | lib/textui/log_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/textui/log_test.go b/lib/textui/log_test.go index 514d96e..bcd9c39 100644 --- a/lib/textui/log_test.go +++ b/lib/textui/log_test.go @@ -16,7 +16,7 @@ import ( ) func logLineRegexp(inner string) string { - return `[0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2}\.[0-9]{4} ` + inner + ` \(from lib/textui/log_test\.go:[0-9]+\)\n` + return `[0-9]{2}:[0-9]{2}:[0-9]{2}\.[0-9]{4} ` + inner + ` \(from lib/textui/log_test\.go:[0-9]+\)\n` } func TestLogFormat(t *testing.T) { |