From abb490b8b2d67747b7ee00d034e90179f513213a Mon Sep 17 00:00:00 2001 From: Krzesimir Nowak Date: Thu, 16 Apr 2015 15:34:58 +0200 Subject: [PATCH] godep: Update test-aci-auth-server Makes the auth tests a bit faster. --- Godeps/Godeps.json | 2 +- .../endocode/test-aci-auth-server/lib/aci.go | 11 ++--------- 2 files changed, 3 insertions(+), 10 deletions(-) diff --git a/Godeps/Godeps.json b/Godeps/Godeps.json index 4bafc14..3618253 100644 --- a/Godeps/Godeps.json +++ b/Godeps/Godeps.json @@ -108,7 +108,7 @@ }, { "ImportPath": "github.com/endocode/test-aci-auth-server/lib", - "Rev": "30edb284bc3141e01b4dd38855aaa181cbd0b8f5" + "Rev": "db0b71f8d494b39de4857aef9326a5a4f3224d5f" }, { "ImportPath": "github.com/gorilla/context", diff --git a/Godeps/_workspace/src/github.com/endocode/test-aci-auth-server/lib/aci.go b/Godeps/_workspace/src/github.com/endocode/test-aci-auth-server/lib/aci.go index a6b1a56..e4f962c 100644 --- a/Godeps/_workspace/src/github.com/endocode/test-aci-auth-server/lib/aci.go +++ b/Godeps/_workspace/src/github.com/endocode/test-aci-auth-server/lib/aci.go @@ -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.") } ` )