mirror of
https://github.com/go-gitea/gitea
synced 2024-12-22 05:07:50 +01:00
Fix missing m.Run() in TestMain (#21341)
Backport #21340, add the missing m.Run()
This commit is contained in:
parent
cbebcc1c26
commit
1a9ba1c65d
@ -7,6 +7,7 @@ package markup_test
|
||||
import (
|
||||
"context"
|
||||
"io"
|
||||
"os"
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
@ -32,6 +33,7 @@ func TestMain(m *testing.M) {
|
||||
if err := git.InitSimple(context.Background()); err != nil {
|
||||
log.Fatal("git init failed, err: %v", err)
|
||||
}
|
||||
os.Exit(m.Run())
|
||||
}
|
||||
|
||||
func TestRender_Commits(t *testing.T) {
|
||||
@ -336,7 +338,7 @@ func TestRender_emoji(t *testing.T) {
|
||||
`<p>Some text with <span class="emoji" aria-label="grinning face with smiling eyes">π</span><span class="emoji" aria-label="grinning face with smiling eyes">π</span> 2 emoji next to each other</p>`)
|
||||
test(
|
||||
"ππ€ͺππ€β",
|
||||
`<p><span class="emoji" aria-label="smiling face with sunglasses">π</span><span class="emoji" aria-label="zany face">π€ͺ</span><span class="emoji" aria-label="locked with key">π</span><span class="emoji" aria-label="money-mouth face">π€</span><span class="emoji" aria-label="question mark">β</span></p>`)
|
||||
`<p><span class="emoji" aria-label="smiling face with sunglasses">π</span><span class="emoji" aria-label="zany face">π€ͺ</span><span class="emoji" aria-label="locked with key">π</span><span class="emoji" aria-label="money-mouth face">π€</span><span class="emoji" aria-label="red question mark">β</span></p>`)
|
||||
|
||||
// should match nothing
|
||||
test(
|
||||
|
@ -6,6 +6,7 @@ package markdown_test
|
||||
|
||||
import (
|
||||
"context"
|
||||
"os"
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
@ -37,6 +38,7 @@ func TestMain(m *testing.M) {
|
||||
if err := git.InitSimple(context.Background()); err != nil {
|
||||
log.Fatal("git init failed, err: %v", err)
|
||||
}
|
||||
os.Exit(m.Run())
|
||||
}
|
||||
|
||||
func TestRender_StandardLinks(t *testing.T) {
|
||||
|
Loadingβ¦
Reference in New Issue
Block a user