summaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authorLars Lehtonen <lars.lehtonen@gmail.com>2021-07-18 05:09:34 -0700
committerGitHub <noreply@github.com>2021-07-18 14:09:34 +0200
commit2344007fa3609d57d2abef96ec4d3ed20c37e127 (patch)
tree04bde7252802ad498870db29457313486fe6cbef /modules
parent29d491766087098d257c27ab51dd794a7147ade7 (diff)
downloadgitea-2344007fa3609d57d2abef96ec4d3ed20c37e127.tar.gz
gitea-2344007fa3609d57d2abef96ec4d3ed20c37e127.zip
modules/markup/markdown: fix dropped test error (#16438)
Diffstat (limited to 'modules')
-rw-r--r--modules/markup/markdown/markdown_test.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/markup/markdown/markdown_test.go b/modules/markup/markdown/markdown_test.go
index 76c6d28d07..f22c389531 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))
}