We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b52803 commit 2552602Copy full SHA for 2552602
1 file changed
cmd/next-test/main.go
@@ -71,5 +71,12 @@ func main() {
71
})
72
73
next := todoTests[0]
74
- fmt.Printf("%s (%d bytes)\n", next.Name, next.QueryLen)
+ fmt.Printf("Next: %s (%d bytes)\n", next.Name, next.QueryLen)
75
+
76
+ if len(todoTests) > 1 {
77
+ fmt.Printf("\nRemaining todo tests (%d):\n", len(todoTests)-1)
78
+ for _, t := range todoTests[1:] {
79
+ fmt.Printf(" %s (%d bytes)\n", t.Name, t.QueryLen)
80
+ }
81
82
}
0 commit comments