From 631b6c71e534fb9a1d1a39d02420940970ef78d2 Mon Sep 17 00:00:00 2001 From: eileenmcnaugton Date: Wed, 2 Sep 2015 12:43:06 +1200 Subject: [PATCH] backport formatting from master to sync up before starting --- tests/phpunit/api/v3/DomainTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/phpunit/api/v3/DomainTest.php b/tests/phpunit/api/v3/DomainTest.php index f83f96a3ce..a13be7966b 100644 --- a/tests/phpunit/api/v3/DomainTest.php +++ b/tests/phpunit/api/v3/DomainTest.php @@ -105,7 +105,7 @@ class api_v3_DomainTest extends CiviUnitTestCase { $this->assertType('array', $result); $domain = $result['values'][0]; - $this->assertEquals("info@EXAMPLE.ORG", $domain['from_email'], 'In line ' . __LINE__); + $this->assertEquals("info@EXAMPLE.ORG", $domain['from_email']); $this->assertEquals("FIXME", $domain['from_name']); // checking other important parts of domain information // test will fail if backward incompatible changes happen @@ -127,7 +127,7 @@ class api_v3_DomainTest extends CiviUnitTestCase { continue; } - $this->assertEquals("info@EXAMPLE.ORG", $domain['from_email'], 'In line ' . __LINE__); + $this->assertEquals("info@EXAMPLE.ORG", $domain['from_email']); $this->assertEquals("FIXME", $domain['from_name']); // checking other important parts of domain information -- 2.25.1