test: Add a hint message on boolean comparison

Signed-off-by: Joas Schilling <coding@schilljs.com>
pull/48210/head
Joas Schilling 2025-06-06 12:18:11 +07:00
parent b95a1653e6
commit a425a1affc
No known key found for this signature in database
GPG Key ID: F72FA5B49FFA96B0
1 changed files with 1 additions and 1 deletions

@ -557,7 +557,7 @@ abstract class Storage extends \Test\TestCase {
$this->instance->copy('source', 'target');
$this->assertFalse($this->instance->file_exists('target/test2.txt'));
$this->assertFalse($this->instance->file_exists('target/test2.txt'), 'File target/test2.txt should no longer exist, but does');
$this->assertEquals('foo', $this->instance->file_get_contents('target/test1.txt'));
}