- Timestamp:
- 05/28/2024 05:25:06 AM (22 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/privacy/wpPrivacyGeneratePersonalDataExportFile.php
r58097 r58221 290 290 wp_privacy_generate_personal_data_export_file( self::$export_request_id ); 291 291 292 $this->assert True( file_exists( self::$exports_dir . 'index.php' ));292 $this->assertFileExists( self::$exports_dir . 'index.php' ); 293 293 } 294 294 … … 301 301 wp_privacy_generate_personal_data_export_file( self::$export_request_id ); 302 302 303 $this->assert True( file_exists( $this->export_file_name ));303 $this->assertFileExists( $this->export_file_name ); 304 304 } 305 305 … … 409 409 410 410 wp_privacy_generate_personal_data_export_file( self::$export_request_id ); 411 $this->assert True( file_exists( $this->export_file_name ));411 $this->assertFileExists( $this->export_file_name ); 412 412 413 413 // Create a temporary export directory for the test's export files.
Note: See TracChangeset
for help on using the changeset viewer.