String split format fix for non ascii characters

Currently just abort and return string as is
This commit is contained in:
Clemens Schwaighofer
2022-07-29 10:38:32 +09:00
parent 1795d3ba6c
commit 7e6474195b
3 changed files with 22 additions and 1 deletions

View File

@@ -97,7 +97,13 @@ final class CoreLibsConvertStringsTest extends TestCase
'2-2',
null,
'12--3-4'
]
],
'mutltibyte string' => [
'あいうえ',
'2-2',
null,
'あいうえ'
],
];
}