Fix $called_api expecting at least 2 elements in tests
This commit is contained in:
parent
6776c4e3f9
commit
a329ce5b50
|
@ -575,6 +575,7 @@ function api_get_user(App $a, $contact_id = null)
|
|||
}
|
||||
}
|
||||
|
||||
// $called_api is the API path exploded on / and is expected to have at least 2 elements
|
||||
if (is_null($user) && ($a->argc > (count($called_api) - 1)) && (count($called_api) > 0)) {
|
||||
$argid = count($called_api);
|
||||
list($user, $null) = explode(".", $a->argv[$argid]);
|
||||
|
|
|
@ -818,7 +818,7 @@ class ApiTest extends DatabaseTest
|
|||
public function testApiGetUserWithCalledApi()
|
||||
{
|
||||
global $called_api;
|
||||
$called_api = ['api_path'];
|
||||
$called_api = ['api', 'api_path'];
|
||||
$this->assertSelfUser(api_get_user($this->app));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue