Fix item description with emoji

This commit is contained in:
Alex P 2022-05-13 17:09:58 +03:00
parent c3887bec7a
commit a8c1f386aa
2 changed files with 2 additions and 2 deletions

View file

@ -300,7 +300,7 @@ class ItemFactoryTest extends TestCase
* @var Item $item
*/
$this->assertEquals(mb_substr($name, 0, 127), $item->name());
$this->assertEquals(mb_substr($description, 0, 127), $item->description());
$this->assertEquals(substr($description, 0, 127), $item->description());
}
public function testFromPayPalResponse()