Merge pull request #124 from vito/fix-tests

fix handler/testing test imports
This commit is contained in:
Brad Rydzewski 2014-02-24 21:22:59 -08:00
commit 70732c341a
2 changed files with 5 additions and 5 deletions

View file

@ -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"
) )

View file

@ -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"
) )