Test if the filename is not empty

This commit is contained in:
Hadi Nategh 2018-04-11 11:59:40 +02:00
parent a1aa67476e
commit 8950a0fd99

View File

@ -68,8 +68,8 @@ class SaveToVfsTest extends \EGroupware\Api\AppTest
$this->assertNotContains('\x0b', $cleaned);
$this->assertNotContains('😂', $cleaned);
// Length should stay the same
$this->assertEquals(strlen($filename), strlen($cleaned), 'Length changed');
// Check if the filename is not empty
$this->assertGreaterThan(0, strlen($filename), 'File name is empty');
if(!$replacements)
{