Skip to content

Commit

Permalink
Merge pull request #20652 from seamuslee001/fix_array_access_on_number
Browse files Browse the repository at this point in the history
[NFC] Fixes an issue in this unit test where we are trying to do an a…
  • Loading branch information
colemanw authored Jun 18, 2021
2 parents 16618bf + 8d88e6b commit daa0be9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/phpunit/api/v3/AddressTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ public function testGetAddressLikeFail($version) {
'sequential' => 1,
];
$result = $this->callAPISuccessGetCount('Address', $params, 0);
$this->assertEquals(0, $result['count']);
$this->assertEquals(0, $result);
}

/**
Expand Down

0 comments on commit daa0be9

Please sign in to comment.