From 8e562414024ab304fd55c11b5204ac336ae71a87 Mon Sep 17 00:00:00 2001 From: Levi Zoesch Date: Sat, 28 Oct 2023 23:55:26 -0700 Subject: [PATCH] Update TellerClientTest.php --- tests/TellerClientTest.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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() {