Updates references to module import paths

This commit is contained in:
Brenden Soares
2014-10-28 23:41:39 -07:00
committed by Justin Li
parent 6ea9d159b2
commit eaa1f8b19e

View File

@@ -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
`)
}