aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2025-06-13 19:48:03 -0300
committerEuAndreh <eu@euandre.org>2025-06-13 19:48:03 -0300
commitdc3d156303d1e65819952d1b9110e6791cd4137e (patch)
tree670b6e6d54e7c7dfe991720c9a608fc82fdd9508 /tests
parentMakefile: Add switch for picking number of parallel fuzz workers (diff)
downloadurubu-dc3d156303d1e65819952d1b9110e6791cd4137e.tar.gz
urubu-dc3d156303d1e65819952d1b9110e6791cd4137e.tar.xz
Replace src/urubu/ucd.go with "ucdx" dependencyHEADmain
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/grammar/lexical/parser/parser.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/unit/grammar/lexical/parser/parser.go b/tests/unit/grammar/lexical/parser/parser.go
index f0ce421..2bb69d5 100644
--- a/tests/unit/grammar/lexical/parser/parser.go
+++ b/tests/unit/grammar/lexical/parser/parser.go
@@ -8,8 +8,9 @@ import (
"testing"
"testing/internal/testdeps"
+ "ucdx"
+
spec "urubu/spec/grammar"
- "urubu/ucd"
)
@@ -1507,7 +1508,7 @@ func TestParse(t *testing.T) {
}
func TestParse_ContributoryPropertyIsNotExposed(t *testing.T) {
- for _, cProp := range ucd.ContributoryProperties() {
+ for _, cProp := range ucdx.ContributoryProperties() {
t.Run(fmt.Sprintf("%v", cProp), func(t *testing.T) {
p := NewParser(spec.LexKindName("test"), strings.NewReader(fmt.Sprintf(`\p{%v=yes}`, cProp)))
root, err := p.Parse()