From 6924642bbce73ed1e7b5f43b547f522b9d5ee696 Mon Sep 17 00:00:00 2001 From: Mior Muhammad Zaki Date: Mon, 2 Sep 2024 23:46:22 +0800 Subject: [PATCH] wip Signed-off-by: Mior Muhammad Zaki --- tests/Foundation/Bootstrap/CreateVendorSymlinkTest.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/Foundation/Bootstrap/CreateVendorSymlinkTest.php b/tests/Foundation/Bootstrap/CreateVendorSymlinkTest.php index 7a0ab45f..cf470eb0 100644 --- a/tests/Foundation/Bootstrap/CreateVendorSymlinkTest.php +++ b/tests/Foundation/Bootstrap/CreateVendorSymlinkTest.php @@ -5,6 +5,7 @@ use Illuminate\Filesystem\Filesystem; use Orchestra\Testbench\Foundation\Bootstrap\CreateVendorSymlink; use Orchestra\Testbench\TestCase; +use PHPUnit\Framework\Attributes\Test; use function Orchestra\Testbench\container; use function Orchestra\Testbench\laravel_vendor_exists; @@ -12,7 +13,7 @@ class CreateVendorSymlinkTest extends TestCase { - /** @test */ + #[Test] public function it_can_create_vendor_symlink() { $workingPath = package_path('vendor'); @@ -30,7 +31,7 @@ public function it_can_create_vendor_symlink() $this->assertTrue($laravel['TESTBENCH_VENDOR_SYMLINK']); } - /** @test */ + #[Test] public function it_can_skip_existing_vendor_symlink() { $workingPath = package_path('vendor');