diff options
author | Lars Lehtonen <lars.lehtonen@gmail.com> | 2021-07-18 05:09:34 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-18 14:09:34 +0200 |
commit | 2344007fa3609d57d2abef96ec4d3ed20c37e127 (patch) | |
tree | 04bde7252802ad498870db29457313486fe6cbef /modules | |
parent | 29d491766087098d257c27ab51dd794a7147ade7 (diff) | |
download | gitea-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.go | 1 |
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)) } |