Skip to content

Commit b8dd827

Browse files
committed
fix(test): adgujst test after change on the public api methods.
1 parent 39f93cf commit b8dd827

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/Endpoint/Accounts/AccountsTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public function test_it_can_get_accounts()
1616
]);
1717

1818
$response = $sdk->accounts()
19-
->all();
19+
->get();
2020

2121
$this->assertIsArray($response);
2222
$this->assertArrayHasKey('accounts', $response);

tests/UnbounceTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ public function test_throw_exception_when_unauthorized(): void
2626

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

29-
$sdk->accounts()->all();
29+
$sdk->accounts()->get();
3030
}
3131
}

0 commit comments

Comments
 (0)