diff options
author | wxiaoguang <wxiaoguang@gmail.com> | 2024-12-24 09:54:19 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-24 01:54:19 +0000 |
commit | 781c6df40fcd8c8a112d048b4beb079d0b9a7f2b (patch) | |
tree | 041ce9a23cf97219eecf05d7aac2707620c17e5c /tests | |
parent | 02c64e48b7421e68d264163253318aacb6fb2f3d (diff) | |
download | gitea-781c6df40fcd8c8a112d048b4beb079d0b9a7f2b.tar.gz gitea-781c6df40fcd8c8a112d048b4beb079d0b9a7f2b.zip |
Add sub issue list support (#32940)
Just like GitHub, show issue icon/title when the issue number is in a list
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_utils.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_utils.go b/tests/test_utils.go index 0fe0200ea7..96eb5731b4 100644 --- a/tests/test_utils.go +++ b/tests/test_utils.go @@ -58,7 +58,7 @@ func InitTest(requireGitea bool) { _ = os.Setenv("GITEA_CONF", giteaConf) fmt.Printf("Environment variable $GITEA_CONF not set, use default: %s\n", giteaConf) if !setting.EnableSQLite3 { - testlogger.Fatalf(`sqlite3 requires: import _ "github.com/mattn/go-sqlite3" or -tags sqlite,sqlite_unlock_notify` + "\n") + testlogger.Fatalf(`sqlite3 requires: -tags sqlite,sqlite_unlock_notify` + "\n") } } if !filepath.IsAbs(giteaConf) { |