diff --git a/pkg/handler/testing/team_test.go b/pkg/handler/testing/team_test.go index 6c0859959..34e7264f5 100644 --- a/pkg/handler/testing/team_test.go +++ b/pkg/handler/testing/team_test.go @@ -7,7 +7,7 @@ import ( "testing" //"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/smartystreets/goconvey/convey" ) diff --git a/pkg/handler/testing/users_test.go b/pkg/handler/testing/users_test.go index db64c0256..a976dbd15 100644 --- a/pkg/handler/testing/users_test.go +++ b/pkg/handler/testing/users_test.go @@ -6,10 +6,10 @@ import ( "net/url" "testing" - "github.com/drone/drone/database" - . "github.com/drone/drone/database/testing" - "github.com/drone/drone/handler" - . "github.com/drone/drone/model" + "github.com/drone/drone/pkg/database" + . "github.com/drone/drone/pkg/database/testing" + "github.com/drone/drone/pkg/handler" + . "github.com/drone/drone/pkg/model" . "github.com/smartystreets/goconvey/convey" )