From fc67d6bbbc19a132c3c05208ba7b57d1ea98a234 Mon Sep 17 00:00:00 2001 From: Lars Lehtonen Date: Thu, 15 Jul 2021 08:47:45 -0700 Subject: [PATCH] modules/markup/markdown: fix dropped test error --- modules/markup/markdown/markdown_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/markup/markdown/markdown_test.go b/modules/markup/markdown/markdown_test.go index 76c6d28d07b7d..f22c389531040 100644 --- a/modules/markup/markdown/markdown_test.go +++ b/modules/markup/markdown/markdown_test.go @@ -42,6 +42,7 @@ func TestRender_StandardLinks(t *testing.T) { URLPrefix: setting.AppSubURL, IsWiki: true, }, input) + assert.NoError(t, err) assert.Equal(t, strings.TrimSpace(expectedWiki), strings.TrimSpace(buffer)) }