UNIT TEST : view_followup_card returns one byte more

This commit is contained in:
sparkyx 2025-03-13 12:45:59 +01:00
parent 0e4055de47
commit 3d4db2ee28

View file

@ -137,7 +137,7 @@ class FollowupTest extends TestCase
$content=ob_get_contents(); $content=ob_get_contents();
ob_end_clean(); ob_end_clean();
$this->assertStringContainsString("BONDEC3-1", $content); $this->assertStringContainsString("BONDEC3-1", $content);
$this->assertTrue(mb_strlen($content)==1620,"error result not valid $content size = ".mb_strlen($content)); $this->assertTrue(mb_strlen($content)==1621,"error result not valid $content size = ".mb_strlen($content));
} }