diff options
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/pr/checkout.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/pr/checkout.go b/contrib/pr/checkout.go index 9c06357295..34cd82ff0a 100644 --- a/contrib/pr/checkout.go +++ b/contrib/pr/checkout.go @@ -5,6 +5,7 @@ Checkout a PR and load the tests data into sqlite database */ import ( + "context" "flag" "fmt" "io/ioutil" @@ -92,7 +93,7 @@ func runPR() { //x, err = xorm.NewEngine("sqlite3", "file::memory:?cache=shared") var helper testfixtures.Helper = &testfixtures.SQLite{} - models.NewEngine(func(_ *xorm.Engine) error { + models.NewEngine(context.Background(), func(_ *xorm.Engine) error { return nil }) models.HasEngine = true |