mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-03 08:07:24 -05:00
Fix minor typo
This commit is contained in:
parent
11af8658cf
commit
b7b0ee7df9
@ -87,7 +87,7 @@ func getEngine() (*xorm.Engine, error) {
|
|||||||
func NewTestEngine(x *xorm.Engine) (err error) {
|
func NewTestEngine(x *xorm.Engine) (err error) {
|
||||||
x, err = getEngine()
|
x, err = getEngine()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("models.init(fail to conntect database): %v", err)
|
return fmt.Errorf("models.init(fail to connect to database): %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
return x.Sync(tables...)
|
return x.Sync(tables...)
|
||||||
@ -96,7 +96,7 @@ func NewTestEngine(x *xorm.Engine) (err error) {
|
|||||||
func SetEngine() (err error) {
|
func SetEngine() (err error) {
|
||||||
x, err = getEngine()
|
x, err = getEngine()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("models.init(fail to conntect database): %v", err)
|
return fmt.Errorf("models.init(fail to connect to database): %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
// WARNNING: for serv command, MUST remove the output to os.stdout,
|
// WARNNING: for serv command, MUST remove the output to os.stdout,
|
||||||
|
Loading…
Reference in New Issue
Block a user