Skip to content

Commit

Permalink
Merge pull request #26369 from braders/php82-website-test
Browse files Browse the repository at this point in the history
[REF][PHP8.2] Avoid unnecessary property in WebsiteTest
  • Loading branch information
demeritcowboy authored May 29, 2023
2 parents 231ac62 + 458e6f0 commit dff771a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/phpunit/api/v3/WebsiteTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ public function setUp(): void {
$this->useTransaction();

$this->_entity = 'website';
$this->_contactID = $this->organizationCreate();
$contactID = $this->organizationCreate();
$this->params = [
'contact_id' => $this->_contactID,
'contact_id' => $contactID,
'url' => 'website.com',
'website_type_id' => 1,
];
Expand Down

0 comments on commit dff771a

Please sign in to comment.