Merge pull request #93 from notzippy/cmd-fix

Fixed captialization
This commit is contained in:
notzippy
2017-05-31 20:25:56 -07:00
committed by GitHub

View File

@@ -97,13 +97,13 @@ func testApp(args []string) {
defer cmd.Kill()
revel.INFO.Printf("Testing %s (%s) in %s mode\n", revel.AppName, revel.ImportPath, mode)
var httpAddr = revel.HttpAddr
var httpAddr = revel.HTTPAddr
if httpAddr == "" {
httpAddr = "127.0.0.1"
}
var httpProto = "http"
if revel.HttpSsl {
if revel.HTTPSsl {
httpProto = "https"
}