From 1020d55f3790caaf4705c2178682b51f834dd0f3 Mon Sep 17 00:00:00 2001 From: StyleCI Bot Date: Sat, 21 Oct 2023 14:31:04 +0000 Subject: [PATCH] Apply fixes from StyleCI --- .../tests/Feature/Actions/CreatesNewPageSourceFileTest.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/packages/framework/tests/Feature/Actions/CreatesNewPageSourceFileTest.php b/packages/framework/tests/Feature/Actions/CreatesNewPageSourceFileTest.php index e61d06d3d36..4b32145f30e 100644 --- a/packages/framework/tests/Feature/Actions/CreatesNewPageSourceFileTest.php +++ b/packages/framework/tests/Feature/Actions/CreatesNewPageSourceFileTest.php @@ -133,7 +133,6 @@ public function test_that_a_documentation_file_can_be_created_and_contains_expec Filesystem::unlink('_docs/test-page.md'); } - public function test_that_a_markdown_file_can_be_created_with_custom_content() { (new CreatesNewPageSourceFile('Test Page', customContent: 'Hello World!'))->save(); @@ -141,7 +140,7 @@ public function test_that_a_markdown_file_can_be_created_with_custom_content() $this->assertFileExists(Hyde::path('_pages/test-page.md')); $this->assertSame( - <<