diff --git a/packages/framework/tests/Feature/DynamicAuthorPagesTest.php b/packages/framework/tests/Feature/DynamicAuthorPagesTest.php index 71f9003f307..806ebf31141 100644 --- a/packages/framework/tests/Feature/DynamicAuthorPagesTest.php +++ b/packages/framework/tests/Feature/DynamicAuthorPagesTest.php @@ -22,18 +22,18 @@ public function testAuthorPagesAreGenerated() $this->assertSame([ '_pages/404.blade.php', '_pages/index.blade.php', - 'author/mr_hyde', - 'author/jane_doe', - 'author/user123', - // TODO: 'author/anonymous', - // TODO: 'author/guest', + '_posts/anonymous_post_1.md', + '_posts/guest_post_1.md', '_posts/hyde_post_1.md', '_posts/hyde_post_2.md', '_posts/hyde_post_3.md', '_posts/jane_post_1.md', '_posts/jane_post_2.md', - '_posts/anonymous_post_1.md', - '_posts/guest_post_1.md', + 'author/mr_hyde', + 'author/jane_doe', + 'author/user123', + // TODO: 'author/anonymous', + // TODO: 'author/guest', ], array_keys(Hyde::pages()->all())); }