Skip to content

Commit

Permalink
Update ClientTest.php
Browse files Browse the repository at this point in the history
  • Loading branch information
kawax committed Apr 2, 2024
1 parent 7d7ef77 commit 5c152d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Feature/Client/ClientTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public function test_timeline()
->push(['accessJwt' => 'test', 'did' => 'test'])
->push(['feed' => ['post' => []]]);

$response = Bluesky::login(identifier: 'identifier', password: 'password')
$response = Bluesky::unless(Bluesky::check(), fn () => Bluesky::login(identifier: 'identifier', password: 'password'))
->timeline(limit: 10, cursor: '2024');

$this->assertTrue($response->collect()->has('feed'));
Expand Down

0 comments on commit 5c152d3

Please sign in to comment.