X-Git-Url: http://nitlanguage.org diff --git a/tests/test_unicode_4bytes.nit b/tests/test_unicode_4bytes.nit index d069253..3739f9c 100644 --- a/tests/test_unicode_4bytes.nit +++ b/tests/test_unicode_4bytes.nit @@ -12,9 +12,9 @@ # See the License for the specific language governing permissions and # limitations under the License. -intrude import standard::text::flat -import standard +intrude import core::text::flat +import core var s = "𐏓􏿿".as(FlatString) -print s.items.char_at(0).ascii.to_hex -print s.items.char_at(4).ascii.to_hex +print s.items.char_at(0).code_point.to_hex +print s.items.char_at(4).code_point.to_hex