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
2 changed files with 5 additions and 5 deletions

View File

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

View File

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