Skip to content

Commit

Permalink
Replace deprecated phpunit assertFileNotExists with `assertFileDoes…
Browse files Browse the repository at this point in the history
…NotExist`
  • Loading branch information
darthmaim committed Feb 7, 2024
1 parent f6a9b07 commit 10d8665
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/GW2ApiTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public function testExtractCacertPhar() {
unlink( $path );
}

$this->assertFileNotExists( $path, 'extracted cacert file should not exist before extracting' );
$this->assertFileDoesNotExist( $path, 'extracted cacert file should not exist before extracting' );

$api->extractCacertFile();

Expand Down

0 comments on commit 10d8665

Please sign in to comment.