From 93eadfba4ec6ded3f9bb89b2c97aa593145a7df8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Dani=C3=ABl?= <9696905+DanielvV@users.noreply.github.com> Date: Fri, 29 Sep 2017 11:09:39 +0200 Subject: [PATCH] CRM-21214 - Fix address sharing - tests - small change --- tests/phpunit/CRM/Core/BAO/AddressTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/phpunit/CRM/Core/BAO/AddressTest.php b/tests/phpunit/CRM/Core/BAO/AddressTest.php index e035ee5949..b20a6f45a7 100644 --- a/tests/phpunit/CRM/Core/BAO/AddressTest.php +++ b/tests/phpunit/CRM/Core/BAO/AddressTest.php @@ -488,7 +488,7 @@ class CRM_Core_BAO_AddressTest extends CiviUnitTestCase { $updatedAddressA = CRM_Core_BAO_Address::add($updatedAddressParamsA, FALSE); // CRM-21214 - AdressA shouldn't be master of itself. - $this->assertEquals(NULL, $updatedAddressA->master_id); + $this->assertEmpty($updatedAddressA->master_id); } } -- 2.25.1