We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd55b93 commit 0b05bfdCopy full SHA for 0b05bfd
go.mod
@@ -1,6 +1,6 @@
1
module github.com/bitfield/gotestdox
2
3
-go 1.18
+go 1.22
4
5
require (
6
github.com/fatih/color v1.15.0
prettifier_test.go
@@ -22,7 +22,7 @@ func TestPrettify(t *testing.T) {
22
23
func BenchmarkPrettify(b *testing.B) {
24
input := "TestParseJSON_CorrectlyParsesASingleGoTestJSONOutputLine"
25
- for i := 0; i < b.N; i++ {
+ for range b.N {
26
_ = gotestdox.Prettify(input)
27
}
28
0 commit comments