From 9d1d220146e35dce63fe77d2878cb06071b03c28 Mon Sep 17 00:00:00 2001 From: Liam Morland <lkmorlan@uwaterloo.ca> Date: Thu, 31 Mar 2022 13:00:03 -0400 Subject: [PATCH] Issue #3272770: Replace deprecated assertFileNotExists() with assertFileDoesNotExist() --- tests/src/Functional/FillPdfUploadTestBase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/src/Functional/FillPdfUploadTestBase.php b/tests/src/Functional/FillPdfUploadTestBase.php index 5873b4b..eebf17a 100644 --- a/tests/src/Functional/FillPdfUploadTestBase.php +++ b/tests/src/Functional/FillPdfUploadTestBase.php @@ -130,7 +130,7 @@ abstract class FillPdfUploadTestBase extends FillPdfTestBase { // Now remove the PDF file again. The temporary file should now be // removed both from the disk and the database. $this->drupalPostForm(NULL, NULL, self::OP_REMOVE); - $this->assertFileNotExists($new_file->getFileUri()); + $this->assertFileDoesNotExist($new_file->getFileUri()); // @todo Simplify once Core bug gets fixed. // @see https://www.drupal.org/project/drupal/issues/3043127 $this->assertFileEntryNotExists($new_file, NULL); -- GitLab