From 0e98f294a3511dced7a846351967e6d57b8ec441 Mon Sep 17 00:00:00 2001 From: Alex Suraci Date: Mon, 24 Feb 2014 14:55:05 -0800 Subject: [PATCH] fix handler/testing test imports Signed-off-by: Abhijit Hiremagalur --- pkg/handler/testing/team_test.go | 2 +- pkg/handler/testing/users_test.go | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) 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" )