From fd3b6bac3e51261ae54c8368aee4dbaef28df7f4 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 1 Jan 2026 07:58:32 +0000 Subject: [PATCH] Update next-test to print remaining todo tests Shows the next test to work on followed by a count of remaining todo tests. --- cmd/next-test/main.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cmd/next-test/main.go b/cmd/next-test/main.go index 7ba22d78..319683aa 100644 --- a/cmd/next-test/main.go +++ b/cmd/next-test/main.go @@ -71,5 +71,6 @@ func main() { }) next := todoTests[0] - fmt.Printf("%s (%d bytes)\n", next.Name, next.QueryLen) + fmt.Printf("Next: %s (%d bytes)\n", next.Name, next.QueryLen) + fmt.Printf("Remaining: %d\n", len(todoTests)-1) }