From a112838e26966f11d070e442dccc6de27fe4db38 Mon Sep 17 00:00:00 2001 From: Eric Paris Date: Tue, 28 Apr 2015 10:42:03 -0400 Subject: [PATCH] quiet down to go test for markdown generation We were printing the markdown, don't ask me why. --- md_docs_test.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/md_docs_test.go b/md_docs_test.go index 33613af3..fd11ad32 100644 --- a/md_docs_test.go +++ b/md_docs_test.go @@ -59,6 +59,4 @@ func TestGenMdDoc(t *testing.T) { if !strings.Contains(found, expected) { t.Errorf("Unexpected response.\nExpecting to contain: \n %q\nGot:\n %q\n", expected, found) } - - fmt.Fprintf(os.Stdout, "%s\n", found) }