1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 13:12:50 +01:00

fixes for authorizatoin

This commit is contained in:
David Bomba 2022-07-30 11:43:24 +10:00
parent 15b53ca617
commit 3e84dbc357
2 changed files with 2 additions and 2 deletions

View File

@ -72,7 +72,7 @@ class Yodlee
public function getAccounts($token)
{
$response = $this->bankRequest('/accounts', 'get', [], ['Authorization' => $token]);
$response = $this->bankRequest('/accounts', 'get', [], ["Authorization" => "Bearer {$token}"]);
return $response;

View File

@ -24,7 +24,7 @@ class YodleeApiTest extends TestCase
{
parent::setUp();
$this->markTestSkipped('Skip test no company gateways installed');
// $this->markTestSkipped('Skip test no company gateways installed');
}