mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-04 08:47:23 +08:00
Fix item description with emoji
This commit is contained in:
parent
c3887bec7a
commit
a8c1f386aa
2 changed files with 2 additions and 2 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue