1
0
mirror of https://github.com/oauth2-proxy/oauth2-proxy.git synced 2025-11-29 22:48:19 +02:00

Switch from gpm -> dep for dependency management

This commit is contained in:
Jehiah Czebotar
2017-10-31 09:12:15 -04:00
parent 363a0dda16
commit c4905f2347
8 changed files with 182 additions and 34 deletions

View File

@@ -20,7 +20,7 @@ func NewValidatorTest(t *testing.T) *ValidatorTest {
if err != nil {
t.Fatal("failed to create temp file: " + err.Error())
}
vt.done = make(chan bool)
vt.done = make(chan bool, 1)
return vt
}