Skip to content

Commit

Permalink
[NFC] Fixes an issue in this unit test where we are trying to do an a…
Browse files Browse the repository at this point in the history
…rray acess on an integer
  • Loading branch information
seamuslee001 committed Jun 18, 2021
1 parent 631cba6 commit 8d88e6b
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 8d88e6b

Please sign in to comment.