diff options
author | Péter Szilágyi <peterke@gmail.com> | 2015-12-01 19:20:43 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2015-12-01 19:20:43 +0800 |
commit | 2e43414c7931322f9eac114b253e6fbdcdc5b678 (patch) | |
tree | 9048189f71f8514adf3a220e5d47532af602f7ba /accounts | |
parent | f801ec78cef4e3338c4e4ad19253ede2a0dd0dcb (diff) | |
download | dexon-2e43414c7931322f9eac114b253e6fbdcdc5b678.tar.gz dexon-2e43414c7931322f9eac114b253e6fbdcdc5b678.tar.zst dexon-2e43414c7931322f9eac114b253e6fbdcdc5b678.zip |
accounts: increase re-lock timeout to account for slow CI servers
Diffstat (limited to 'accounts')
-rw-r--r-- | accounts/accounts_test.go | 2 |
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) |