retry exec node tests

(diff behaviour on host)
This commit is contained in:
Dave Conway-Jones 2017-03-06 16:25:38 +00:00
parent bd4c578230
commit c97812c340
1 changed files with 2 additions and 2 deletions

View File

@ -264,7 +264,7 @@ describe('exec node', function() {
} }
}); });
setTimeout(function() { setTimeout(function() {
n1.receive({kill:"sigint"}); n1.receive({kill:"SIGINT"});
},150); },150);
n1.receive({}); n1.receive({});
}); });
@ -555,7 +555,7 @@ describe('exec node', function() {
done(); done();
}); });
setTimeout(function() { setTimeout(function() {
n1.receive({kill:"sigquit"}); n1.receive({kill:"SIGQUIT"});
},150); },150);
n1.receive({}); n1.receive({});
}); });