From d25c4867ddbc240ca26613091727280628bee9da Mon Sep 17 00:00:00 2001 From: Duncan McClean Date: Mon, 22 Apr 2024 19:51:20 +0100 Subject: [PATCH] Fix failing test This test was failing because of https://github.com/statamic/cms/pull/9734. We added `public_path('assets')` to the Git config but the migrator test was asserting that it wasn't there. This commit just removes that assertion. --- tests/MigrateAssetContainerTest.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/MigrateAssetContainerTest.php b/tests/MigrateAssetContainerTest.php index 4d315f6..0626136 100644 --- a/tests/MigrateAssetContainerTest.php +++ b/tests/MigrateAssetContainerTest.php @@ -412,8 +412,6 @@ public function it_migrates_disk_with_s3_driver() $this->assertFilesystemDiskExists('public'); $this->assertFilesystemDiskExists('s3'); $this->assertFilesystemDiskExists('assets'); - - $this->assertGitConfigPathNotExists('assets'); } /** @test */