diff options
author | EuAndreh <eu@euandre.org> | 2025-06-13 19:48:03 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2025-06-13 19:48:03 -0300 |
commit | dc3d156303d1e65819952d1b9110e6791cd4137e (patch) | |
tree | 670b6e6d54e7c7dfe991720c9a608fc82fdd9508 /tests | |
parent | Makefile: Add switch for picking number of parallel fuzz workers (diff) | |
download | urubu-dc3d156303d1e65819952d1b9110e6791cd4137e.tar.gz urubu-dc3d156303d1e65819952d1b9110e6791cd4137e.tar.xz |
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/grammar/lexical/parser/parser.go | 5 |
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() |