Skip to content

Commit

Permalink
fix(test): adgujst test after change on the public api methods.
Browse files Browse the repository at this point in the history
  • Loading branch information
adrorocker committed Sep 18, 2024
1 parent 39f93cf commit b8dd827
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/Endpoint/Accounts/AccountsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public function test_it_can_get_accounts()
]);

$response = $sdk->accounts()
->all();
->get();

$this->assertIsArray($response);
$this->assertArrayHasKey('accounts', $response);
Expand Down
2 changes: 1 addition & 1 deletion tests/UnbounceTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ public function test_throw_exception_when_unauthorized(): void

$this->expectException(RequestUnauthorizedException::class);

$sdk->accounts()->all();
$sdk->accounts()->get();
}
}

0 comments on commit b8dd827

Please sign in to comment.