CRM-16367 (Payment): remove a trailing comma to keep rampaging Jenkins at bay.
authorRob Thorne <rob@torenware.com>
Wed, 29 Apr 2015 21:12:02 +0000 (21:12 +0000)
committerRob Thorne <rob@torenware.com>
Thu, 30 Apr 2015 03:04:54 +0000 (03:04 +0000)
tests/phpunit/api/v3/PaymentTokenTest.php

index e480a49f1f26a067de37e6a086c81e769cce8f88..1714900ff2d3fc44216bbb02a77c7496beefc6b3 100644 (file)
@@ -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() {