diff --git a/tests/TellerClientTest.php b/tests/TellerClientTest.php index 474148f..abb5c2d 100644 --- a/tests/TellerClientTest.php +++ b/tests/TellerClientTest.php @@ -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() {