Skip to content

Commit

Permalink
Update TellerClientTest.php
Browse files Browse the repository at this point in the history
  • Loading branch information
levizoesch committed Oct 29, 2023
1 parent 4a50469 commit 8e56241
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions tests/TellerClientTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ class TellerClientTest extends BaseTest
/**
* @throws MissingAccessTokenException
*/
public function testListAccounts()
{
$token = config('teller.TEST_TOKEN');
$teller = new TellerClient($token);
$result = $teller->listAccounts();

}
public function testListAccounts()
{
$token = config('teller.TEST_TOKEN');
$teller = new TellerClient($token);
$result = $teller->listAccounts();
$this->assertIsArray($result);
}

public function testTellerTestTokenIsDefined()
{
Expand Down

0 comments on commit 8e56241

Please sign in to comment.