From 896a7903377b41b2a03339802d75cb7971d1007c Mon Sep 17 00:00:00 2001 From: Bradley Taylor Date: Sat, 25 Mar 2023 16:15:12 +0000 Subject: [PATCH] [REF][PHP8.2] Remove unused dyanamic property --- tests/phpunit/api/v3/UFGroupTest.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/phpunit/api/v3/UFGroupTest.php b/tests/phpunit/api/v3/UFGroupTest.php index 62284634e4..4af4170fe9 100644 --- a/tests/phpunit/api/v3/UFGroupTest.php +++ b/tests/phpunit/api/v3/UFGroupTest.php @@ -38,12 +38,11 @@ class api_v3_UFGroupTest extends CiviUnitTestCase { 'title' => 'Test Profile', ]); $this->_ufGroupId = $ufGroup['id']; - $ufMatch = $this->callAPISuccess('uf_match', 'create', [ + $this->callAPISuccess('uf_match', 'create', [ 'contact_id' => $this->_contactId, 'uf_id' => 42, 'uf_name' => 'email@mail.com', ]); - $this->_ufMatchId = $ufMatch['id']; $this->params = [ 'add_captcha' => 1, 'add_contact_to_group' => $this->_groupId, -- 2.25.1