1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: James Valleroy <jvalleroy@mailbox.org>
Date: Mon, 18 Nov 2024 18:56:01 -0500
Subject: Use assertFileDoesNotExist
---
tests/Http/UploadedFilesTest.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/Http/UploadedFilesTest.php b/tests/Http/UploadedFilesTest.php
index 03fcf76..8f9a043 100644
--- a/tests/Http/UploadedFilesTest.php
+++ b/tests/Http/UploadedFilesTest.php
@@ -228,7 +228,7 @@ class UploadedFilesTest extends PHPUnit\Framework\TestCase
$movedFileContents = ob_get_clean();
$this->assertEquals($contents, $movedFileContents);
- $this->assertFileNotExists($uploadedFile->file);
+ $this->assertFileDoesNotExist($uploadedFile->file);
}
public static function providerCreateFromEnvironment()
|