From eaa1f8b19e2d4b86e65aaf88ebe9ad8902244519 Mon Sep 17 00:00:00 2001 From: Brenden Soares Date: Tue, 28 Oct 2014 23:41:39 -0700 Subject: [PATCH] Updates references to module import paths --- revel/test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/revel/test.go b/revel/test.go index 33dfe62..856bb8c 100644 --- a/revel/test.go +++ b/revel/test.go @@ -5,7 +5,7 @@ import ( "fmt" "github.com/revel/revel" "github.com/revel/revel/harness" - "github.com/revel/revel/modules/testrunner/app/controllers" + "github.com/revel/modules/testrunner/app/controllers" "io" "io/ioutil" "net/http" @@ -62,7 +62,7 @@ func testApp(args []string) { // Ensure that the testrunner is loaded in this mode. testRunnerFound := false for _, module := range revel.Modules { - if module.ImportPath == "github.com/revel/revel/modules/testrunner" { + if module.ImportPath == "github.com/revel/modules/testrunner" { testRunnerFound = true break } @@ -72,7 +72,7 @@ func testApp(args []string) { You can add it to a run mode configuration with the following line: - module.testrunner = github.com/revel/revel/modules/testrunner + module.testrunner = github.com/revel/modules/testrunner `) }