Issue #2875796 by diamondsea: Small typo in file test

8.4.x
Gabor Hojtsy 2017-05-12 12:28:49 +02:00
parent 780a770ded
commit 7b976616c3
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ class UnmanagedCopyTest extends FileTestBase {
public function testNonExistent() {
// Copy non-existent file
$desired_filepath = $this->randomMachineName();
$this->assertFalse(file_exists($desired_filepath), "Randomly named file doesn't exists.");
$this->assertFalse(file_exists($desired_filepath), "Randomly named file doesn't exist.");
$new_filepath = file_unmanaged_copy($desired_filepath, $this->randomMachineName());
$this->assertFalse($new_filepath, 'Copying a missing file fails.');
}