Skip to content

Commit

Permalink
Update FeedGeneratorTest.php
Browse files Browse the repository at this point in the history
  • Loading branch information
kawax committed Dec 18, 2024
1 parent 606cb38 commit f171849
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/Feature/FeedGenerator/FeedGeneratorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
use Revolution\Bluesky\Facades\Bluesky;
use Revolution\Bluesky\FeedGenerator\FeedGenerator;
use Revolution\Bluesky\FeedGenerator\ValidateAuth;
use RuntimeException;
use Tests\TestCase;

class FeedGeneratorTest extends TestCase
Expand Down Expand Up @@ -49,7 +50,7 @@ public function test_feed_register_class_string(): void

public function test_feed_register_class_not_callable(): void
{
$this->expectException(InvalidArgumentException::class);
$this->expectException(RuntimeException::class);

FeedGenerator::register('test', TestFeed2::class);

Expand Down

0 comments on commit f171849

Please sign in to comment.