From 80a51f2ed0bcd44a60f2ce3c65475a5bc24acdde Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Stemmer?= Date: Mon, 18 Jul 2022 22:37:49 +0100 Subject: [PATCH] parser/gotest: Move const declaration to top of file --- parser/gotest/gotest.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/parser/gotest/gotest.go b/parser/gotest/gotest.go index 21a3adf..87cb1c4 100644 --- a/parser/gotest/gotest.go +++ b/parser/gotest/gotest.go @@ -14,6 +14,12 @@ import ( "github.com/jstemmer/go-junit-report/v2/gtr" ) +const ( + // maxLineSize is the maximum amount of bytes we'll read for a single line. + // Lines longer than maxLineSize will be truncated. + maxLineSize = 4 * 1024 * 1024 +) + var ( // regexBenchInfo captures 3-5 groups: benchmark name, number of times ran, ns/op (with or without decimal), MB/sec (optional), B/op (optional), and allocs/op (optional). regexBenchmark = regexp.MustCompile(`^(Benchmark[^ -]+)$`) @@ -102,12 +108,6 @@ func SetSubtestMode(mode SubtestMode) Option { } } -const ( - // maxLineSize is the maximum amount of bytes we'll read for a single line. - // Lines longer than maxLineSize will be truncated. - maxLineSize = 4 * 1024 * 1024 -) - // Parser is a Go test output Parser. type Parser struct { packageName string