Fixed problem with DI

This commit is contained in:
Deluan 2016-03-08 18:33:35 -05:00
parent e10e730af1
commit 067517a916
3 changed files with 15 additions and 11 deletions

View file

@ -1,11 +1,13 @@
package tests
import (
"github.com/astaxie/beego"
"os"
"path/filepath"
"runtime"
"testing"
"github.com/astaxie/beego"
"github.com/deluan/gosonic/utils"
)
func Init(t *testing.T, skipOnShort bool) {
@ -21,4 +23,5 @@ func Init(t *testing.T, skipOnShort bool) {
if noLog != "" {
beego.SetLevel(beego.LevelError)
}
utils.Graph.Finalize()
}