From 22a8f576e2b60e006c0858f6e347b5bb61db4129 Mon Sep 17 00:00:00 2001 From: Arthur Britto Date: Sun, 6 Jan 2013 21:21:11 -0800 Subject: [PATCH] UT: Fix Issue #5 test to use 75/USD not 25/USD. --- test/path-test.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/path-test.js b/test/path-test.js index 4b290b2e5c..692a3940c3 100644 --- a/test/path-test.js +++ b/test/path-test.js @@ -696,7 +696,7 @@ buster.testCase("Path negatives", { testutils.payments(self.remote, { // 4. acct 2 sent acct 3 a 75 iou - "bob" : "25/USD/carol", + "bob" : "75/USD/carol", }, callback); }, @@ -705,8 +705,8 @@ buster.testCase("Path negatives", { testutils.verify_balances(self.remote, { - "bob" : [ "-25/USD/carol" ], - "carol" : "25/USD/bob", + "bob" : [ "-75/USD/carol" ], + "carol" : "75/USD/bob", }, callback); }, @@ -754,8 +754,8 @@ buster.testCase("Path negatives", { testutils.verify_balances(self.remote, { "alice" : [ "0/USD/bob", "0/USD/dan"], - "bob" : [ "0/USD/alice", "-25/USD/carol", "0/USD/dan" ], - "carol" : [ "25/USD/bob", "0/USD/dan" ], + "bob" : [ "0/USD/alice", "-75/USD/carol", "0/USD/dan" ], + "carol" : [ "75/USD/bob", "0/USD/dan" ], "dan" : [ "0/USD/alice", "0/USD/bob", "0/USD/carol" ], }, callback);