mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-29 05:11:04 +00:00
Merge pull request #124 from vito/fix-tests
fix handler/testing test imports
This commit is contained in:
commit
70732c341a
2 changed files with 5 additions and 5 deletions
|
@ -7,7 +7,7 @@ import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
//"github.com/drone/drone/database"
|
//"github.com/drone/drone/database"
|
||||||
. "github.com/drone/drone/database/testing"
|
. "github.com/drone/drone/pkg/database/testing"
|
||||||
//"github.com/drone/drone/handler"
|
//"github.com/drone/drone/handler"
|
||||||
. "github.com/smartystreets/goconvey/convey"
|
. "github.com/smartystreets/goconvey/convey"
|
||||||
)
|
)
|
||||||
|
|
|
@ -6,10 +6,10 @@ import (
|
||||||
"net/url"
|
"net/url"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/drone/drone/database"
|
"github.com/drone/drone/pkg/database"
|
||||||
. "github.com/drone/drone/database/testing"
|
. "github.com/drone/drone/pkg/database/testing"
|
||||||
"github.com/drone/drone/handler"
|
"github.com/drone/drone/pkg/handler"
|
||||||
. "github.com/drone/drone/model"
|
. "github.com/drone/drone/pkg/model"
|
||||||
. "github.com/smartystreets/goconvey/convey"
|
. "github.com/smartystreets/goconvey/convey"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue