Fixed captialization

This commit is contained in:
NotZippy
2017-05-31 20:25:04 -07:00
parent a699dab33d
commit 1c5fb4a6f8

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"
}