whisper test: reduce the number of nodes in TestSimulation to reduce memory consumption while running in travis

increase wait period for timeout
This commit is contained in:
amalraj.manigmail.com 2019-05-07 18:27:30 +08:00
parent 8f19fb1ea5
commit 95306b61f8
2 changed files with 2 additions and 2 deletions

View File

@ -67,7 +67,7 @@ var keys = []string{
"7184c1701569e3a4c4d2ddce691edd983b81e42e09196d332e1ae2f1e062cff4",
}
const NumNodes = 16 // must not exceed the number of keys (32)
const NumNodes = 3 // must not exceed the number of keys (32)
type TestData struct {
counter [NumNodes]int

View File

@ -525,7 +525,7 @@ func TestExpiry(t *testing.T) {
}
// wait till expired or timeout
for j := 0; j < 20; j++ {
for j := 0; j < 50; j++ {
time.Sleep(100 * time.Millisecond)
if len(w.Envelopes()) == 0 {
expired = true