1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 05:02:36 +01:00

Bug fixes

This commit is contained in:
Hillel Coren 2015-10-21 15:40:31 +03:00
parent 47f38ad54e
commit ab3de15381
2 changed files with 2 additions and 2 deletions

View File

@ -227,7 +227,7 @@ class PaymentService {
// setup the gateway/payment info
$gateway = $this->createGateway($accountGateway);
$details = $this->getPaymentDetails($invitation);
$details = $this->getPaymentDetails($invitation, $accountGateway);
$details['cardReference'] = $token;
// submit purchase/get response

View File

@ -4,7 +4,7 @@ use Codeception\Util\Fixtures;
use \AcceptanceTester;
use Faker\Factory;
class OnlinePaymentCest
class CheckBalanceCest
{
private $faker;