From dce96299913ffdd9408bbbb75fdc1866a7657e81 Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Mon, 13 Aug 2018 21:54:55 -0400 Subject: [PATCH] test/cli: add a success message --- test/cli.go | 1 + 1 file changed, 1 insertion(+) diff --git a/test/cli.go b/test/cli.go index 1c47c65..2eadfa8 100644 --- a/test/cli.go +++ b/test/cli.go @@ -29,4 +29,5 @@ func main() { fmt.Fprintf(os.Stderr, "%d FAILED tests\n", failed) os.Exit(1) } + fmt.Fprintf(os.Stdout, "SUCCESS: no cli tests failed") }