Make WordPress Core


Ignore:
Timestamp:
08/06/2021 09:45:32 PM (3 years ago)
Author:
SergeyBiryukov
Message:

Tests: Replace assertFileNotExists() with assertFileDoesNotExist().

The assertFileNotExists() method was hard deprecated in PHPUnit 9.1 and the functionality will be removed in PHPUnit 10.0.

The assertFileDoesNotExist() method was introduced as a replacement in PHPUnit 9.1.

This new PHPUnit method is polyfilled by the PHPUnit Polyfills and switching to it will future-proof the tests some more.

References:

Follow-up to [51559-51563].

Props jrf.
See #46149.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/link/themeFile.php

    r50454 r51564  
    122122            $this->assertFileExists( WP_CONTENT_DIR . "/themes/theme-file-child/{$file}" );
    123123        } else {
    124             $this->assertFileNotExists( WP_CONTENT_DIR . "/themes/theme-file-child/{$file}" );
     124            $this->assertFileDoesNotExist( WP_CONTENT_DIR . "/themes/theme-file-child/{$file}" );
    125125        }
    126126
     
    128128            $this->assertFileExists( WP_CONTENT_DIR . "/themes/theme-file-parent/{$file}" );
    129129        } else {
    130             $this->assertFileNotExists( WP_CONTENT_DIR . "/themes/theme-file-parent/{$file}" );
     130            $this->assertFileDoesNotExist( WP_CONTENT_DIR . "/themes/theme-file-parent/{$file}" );
    131131        }
    132132
Note: See TracChangeset for help on using the changeset viewer.