aboutsummaryrefslogtreecommitdiffstats
path: root/accounts
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2015-12-01 19:20:43 +0800
committerPéter Szilágyi <peterke@gmail.com>2015-12-01 19:20:43 +0800
commit2e43414c7931322f9eac114b253e6fbdcdc5b678 (patch)
tree9048189f71f8514adf3a220e5d47532af602f7ba /accounts
parentf801ec78cef4e3338c4e4ad19253ede2a0dd0dcb (diff)
downloadgo-tangerine-2e43414c7931322f9eac114b253e6fbdcdc5b678.tar
go-tangerine-2e43414c7931322f9eac114b253e6fbdcdc5b678.tar.gz
go-tangerine-2e43414c7931322f9eac114b253e6fbdcdc5b678.tar.bz2
go-tangerine-2e43414c7931322f9eac114b253e6fbdcdc5b678.tar.lz
go-tangerine-2e43414c7931322f9eac114b253e6fbdcdc5b678.tar.xz
go-tangerine-2e43414c7931322f9eac114b253e6fbdcdc5b678.tar.zst
go-tangerine-2e43414c7931322f9eac114b253e6fbdcdc5b678.zip
accounts: increase re-lock timeout to account for slow CI servers
Diffstat (limited to 'accounts')
-rw-r--r--accounts/accounts_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/accounts/accounts_test.go b/accounts/accounts_test.go
index d7a8a2b85..55ddecdea 100644
--- a/accounts/accounts_test.go
+++ b/accounts/accounts_test.go
@@ -68,7 +68,7 @@ func TestTimedUnlock(t *testing.T) {
}
// Signing fails again after automatic locking
- time.Sleep(150 * time.Millisecond)
+ time.Sleep(350 * time.Millisecond)
_, err = am.Sign(a1, testSigData)
if err != ErrLocked {
t.Fatal("Signing should've failed with ErrLocked timeout expired, got ", err)