mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 07:09:21 +01:00
f0004760f6
Fix #27639 --- Remove MSSQL specific code per https://codeberg.org/forgejo/discussions/issues/122 (cherry picked from commit b4825670596fe745cebdcc63a8ead4388602d42c)
14 lines
235 B
Go
14 lines
235 B
Go
// Copyright 2024 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package v1_23 //nolint
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"code.gitea.io/gitea/models/migrations/base"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
base.MainTest(m)
|
|
}
|