From: Rob Thorne Date: Wed, 29 Apr 2015 21:12:02 +0000 (+0000) Subject: CRM-16367 (Payment): remove a trailing comma to keep rampaging Jenkins at bay. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=e940b8e2441d4a5710ca341bc6c9d78f5d7c4ad7;p=civicrm-core.git CRM-16367 (Payment): remove a trailing comma to keep rampaging Jenkins at bay. --- diff --git a/tests/phpunit/api/v3/PaymentTokenTest.php b/tests/phpunit/api/v3/PaymentTokenTest.php index e480a49f1f..1714900ff2 100644 --- a/tests/phpunit/api/v3/PaymentTokenTest.php +++ b/tests/phpunit/api/v3/PaymentTokenTest.php @@ -58,7 +58,7 @@ class api_v3_PaymentTokenTest extends CiviUnitTestCase { $result = $this->callAPIAndDocument('payment_token', 'create', $this->params, __FUNCTION__, __FILE__, $description); $this->assertEquals(1, $result['count']); $this->assertNotNull($result['values'][$result['id']]['id']); - $this->getAndCheck(array_merge($this->params, array($this->params,)), $result['id'], 'payment_token', TRUE); + $this->getAndCheck(array_merge($this->params, array($this->params)), $result['id'], 'payment_token', TRUE); } public function testGetPaymentToken() {