remove inline message from assert messages
[civicrm-core.git] / tests / phpunit / api / v3 / PaymentProcessorTest.php
index 0e1285d4b2c0cfa809db2b31cdfff6e036fa76c8..ab51fbce95e59ea842685134f01a5203cc848b4d 100644 (file)
@@ -76,7 +76,7 @@ class api_v3_PaymentProcessorTest extends CiviUnitTestCase {
   public function testPaymentProcessorCreate() {
     $params = $this->_params;
     $result = $this->callAPIAndDocument('payment_processor', 'create', $params, __FUNCTION__, __FILE__);
-    $this->assertNotNull($result['id'], 'in line ' . __LINE__);
+    $this->assertNotNull($result['id']);
 
     //assertDBState compares expected values in $result to actual values in the DB
     $this->assertDBState('CRM_Financial_DAO_PaymentProcessor', $result['id'], $params);