UT: Fix intermitent timeouts.

This commit is contained in:
Arthur Britto
2012-12-14 19:07:46 -08:00
parent 68e665c719
commit 704b31e0f6
2 changed files with 5 additions and 2 deletions

View File

@@ -156,7 +156,6 @@ buster.testCase("Offer tests", {
});
},
"//new user offer_create then ledger_accept then offer_cancel then ledger_accept." :
function (done) {
var self = this;

View File

@@ -138,7 +138,11 @@ var build_teardown = function (host) {
var create_accounts = function (remote, src, amount, accounts, callback) {
assert(5 === arguments.length);
async.forEachSeries(accounts, function (account, callback) {
async.forEach(accounts, function (account, callback) {
// Cache the seq as 1.
// Otherwise, when other operations attempt to opperate async against the account they may get confused.
remote.set_account_seq(account, 1);
remote.transaction()
.payment(src, account, amount)
.on('proposed', function (m) {