godep: Update test-aci-auth-server

Makes the auth tests a bit faster.
This commit is contained in:
Krzesimir Nowak
2015-04-22 10:40:49 +02:00
parent c3c4da3619
commit abb490b8b2
2 changed files with 3 additions and 10 deletions
+1 -1
View File
@@ -108,7 +108,7 @@
},
{
"ImportPath": "github.com/endocode/test-aci-auth-server/lib",
"Rev": "30edb284bc3141e01b4dd38855aaa181cbd0b8f5"
"Rev": "db0b71f8d494b39de4857aef9326a5a4f3224d5f"
},
{
"ImportPath": "github.com/gorilla/context",
+2 -9
View File
@@ -43,17 +43,10 @@ const (
testProgSrcStr = `
package main
import (
"fmt"
"time"
)
import "fmt"
func main() {
for i := 3; i > 0; i -= 1 {
fmt.Println(i)
time.Sleep(time.Second)
}
fmt.Println("BANG!")
fmt.Println("Authentication succeeded.")
}
`
)