From 72f434c670cc5de079c786510c0aa4d9519152db Mon Sep 17 00:00:00 2001 From: Arthur Britto Date: Mon, 22 Oct 2012 21:40:26 -0700 Subject: [PATCH] UT: Quiet tests. --- test/send-test.js | 2 +- test/testutils.js | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/test/send-test.js b/test/send-test.js index cd474f752..f60208036 100644 --- a/test/send-test.js +++ b/test/send-test.js @@ -13,7 +13,7 @@ var serverDelay = 1500; buster.testRunner.timeout = 5000; buster.testCase("Sending", { - 'setUp' : testutils.test_setup_verbose, + 'setUp' : testutils.test_setup, 'tearDown' : testutils.test_teardown, "send XNS to non-existant account without create." : diff --git a/test/testutils.js b/test/testutils.js index 2884aaaa3..8d9c337af 100644 --- a/test/testutils.js +++ b/test/testutils.js @@ -62,9 +62,7 @@ var credit_limit = function (remote, src, amount, callback) { remote.transaction() .ripple_line_set(src, amount) .on('proposed', function (m) { - console.log("proposed: %s", JSON.stringify(m)); - - // buster.assert.equals(m.result, 'tesSUCCESS'); + // console.log("proposed: %s", JSON.stringify(m)); callback(m.result != 'tesSUCCESS'); })