From 4492ba916b217ca301afbd88601773a42c016ac6 Mon Sep 17 00:00:00 2001 From: tris203 Date: Sat, 1 Jun 2024 13:28:30 +0100 Subject: [PATCH] feat: add emoji char class test. --- tests/precognition/char_spec.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/precognition/char_spec.lua b/tests/precognition/char_spec.lua index 28fb581..fb660da 100644 --- a/tests/precognition/char_spec.lua +++ b/tests/precognition/char_spec.lua @@ -8,7 +8,7 @@ describe("static classes", function() eq(cc.whitespace, 0) eq(cc.other, 1) eq(cc.word, 2) - eq(cc.empty_string, 3) + eq(cc.emoji, 3) end) end)