UT: Quiet tests.

This commit is contained in:
Arthur Britto
2012-10-22 21:40:26 -07:00
parent 0105009d21
commit 72f434c670
2 changed files with 2 additions and 4 deletions

View File

@@ -13,7 +13,7 @@ var serverDelay = 1500;
buster.testRunner.timeout = 5000; buster.testRunner.timeout = 5000;
buster.testCase("Sending", { buster.testCase("Sending", {
'setUp' : testutils.test_setup_verbose, 'setUp' : testutils.test_setup,
'tearDown' : testutils.test_teardown, 'tearDown' : testutils.test_teardown,
"send XNS to non-existant account without create." : "send XNS to non-existant account without create." :

View File

@@ -62,9 +62,7 @@ var credit_limit = function (remote, src, amount, callback) {
remote.transaction() remote.transaction()
.ripple_line_set(src, amount) .ripple_line_set(src, amount)
.on('proposed', function (m) { .on('proposed', function (m) {
console.log("proposed: %s", JSON.stringify(m)); // console.log("proposed: %s", JSON.stringify(m));
// buster.assert.equals(m.result, 'tesSUCCESS');
callback(m.result != 'tesSUCCESS'); callback(m.result != 'tesSUCCESS');
}) })