From a9d030acb4ba2328d089590e65462b17a794303d Mon Sep 17 00:00:00 2001 From: "Michael J. Curry" Date: Wed, 12 Oct 2016 14:04:18 -0400 Subject: [PATCH] fix names, tests passing --- test/PullPayment.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/PullPayment.js b/test/PullPayment.js index 161d1c896..64d548040 100644 --- a/test/PullPayment.js +++ b/test/PullPayment.js @@ -1,8 +1,8 @@ -contract('PullPaymentCapable', function(accounts) { +contract('PullPaymentExample', function(accounts) { it("can't call asyncSend externally", function(done) { var ppc; - return PullPaymentCapableExample.new() + return PullPaymentExample.new() .then(function(ppc) { assert.isUndefined(ppc.asyncSend); }) @@ -12,7 +12,7 @@ contract('PullPaymentCapable', function(accounts) { it("can record an async payment correctly", function(done) { var ppce; var AMOUNT = 100; - return PullPaymentCapableExample.new() + return PullPaymentExample.new() .then(function(_ppce) { ppce = _ppce; ppce.callSend(accounts[0], AMOUNT)