From 1f309a27b7b9f27a41e620ee40b71a260c8ffa32 Mon Sep 17 00:00:00 2001 From: Caen De Silva Date: Fri, 6 Dec 2024 14:19:05 +0100 Subject: [PATCH] Try to fix crazed test by default --- packages/framework/tests/Unit/IncludesFacadeUnitTest.php | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/framework/tests/Unit/IncludesFacadeUnitTest.php b/packages/framework/tests/Unit/IncludesFacadeUnitTest.php index 37e830b33fe..883680fca79 100644 --- a/packages/framework/tests/Unit/IncludesFacadeUnitTest.php +++ b/packages/framework/tests/Unit/IncludesFacadeUnitTest.php @@ -243,6 +243,7 @@ public function testBladeReturnsDefaultValueWhenNotFound() protected function mockFilesystemFromClosure(Closure $config): void { $filesystem = Mockery::mock(Filesystem::class); + $filesystem->shouldReceive('missing')->andReturn(false)->byDefault(); $config($filesystem);