summaryrefslogtreecommitdiff
path: root/lib/textui/log_test.go
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2023-01-03 10:34:06 -0700
committerLuke Shumaker <lukeshu@lukeshu.com>2023-01-05 19:48:17 -0700
commitdf62eb5d4c92756914ce57a1b6219b39876331f6 (patch)
treeeacfd2c70bb085f9446ce0d6c6db5a8a77631ac4 /lib/textui/log_test.go
parent39dfaa5af4b628eee55b4aa583abf72ef5833f32 (diff)
Try to get log-lines to be shorter
Diffstat (limited to 'lib/textui/log_test.go')
-rw-r--r--lib/textui/log_test.go2
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) {