From 18d8b294610f93f6eac7dd95317db077dcb2c4da Mon Sep 17 00:00:00 2001 From: Stefan Haller Date: Fri, 29 Sep 2023 20:40:15 +0200 Subject: [PATCH] Make test_list_generator.go print what it's doing It's confusing if the cheatsheet generator prints output but this one doesn't. --- pkg/integration/tests/test_list_generator.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/integration/tests/test_list_generator.go b/pkg/integration/tests/test_list_generator.go index f616f90a3..6951dad57 100644 --- a/pkg/integration/tests/test_list_generator.go +++ b/pkg/integration/tests/test_list_generator.go @@ -19,6 +19,8 @@ import ( ) func main() { + println("Generating test_list.go...") + code := generateCode() formattedCode, err := format.Source(code)