1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-04 20:52:34 +02:00

More detailed assertion fail message in e_fileTest

This commit is contained in:
Nick Liu 2018-08-24 12:58:19 -05:00
parent 6914d035fb
commit c94bbd8e14
No known key found for this signature in database
GPG Key ID: 1167C5F9C9897637
2 changed files with 2 additions and 2 deletions

2
e107

@ -1 +1 @@
Subproject commit 73fbe980a432c4520ea99b21f11a16a5fd88110b
Subproject commit 5225b129c4c56ff5d001c80f3f903118a8597d7e

View File

@ -53,7 +53,7 @@
foreach($isCleanTest as $file)
{
$actual = $this->fl->isClean($file['path'], $file['path']);
$this->assertEquals($file['expected'],$actual, "isClean() failed with error code: ".$this->fl->getErrorCode());
$this->assertEquals($file['expected'],$actual, "isClean() failed on {$file['path']} with error code: ".$this->fl->getErrorCode());
}
}