|
18 | 18 | @testset "matches" begin
|
19 | 19 | @test isempty(HE.matches(""))
|
20 | 20 | @test isempty(HE.matches("\u201f"))
|
21 |
| - @test isempty(EE.matches(SubString("This is \u201f", 9))) |
| 21 | + @test isempty(HE.matches(SubString("This is \u201f", 9))) |
22 | 22 | for (chrs, exp) in (("\u2270", ["nle", "nleq"]),
|
23 | 23 | ("\U1d4ab", ["Pscr"]),
|
24 | 24 | ("\U1d51e", ["afr"]),
|
|
31 | 31 |
|
32 | 32 | @testset "longestmatches" begin
|
33 | 33 | @test isempty(HE.longestmatches("\u201f abcd"))
|
34 |
| - @test isempty(EE.longestmatches(SubString("This is \U201f abcd", 9))) |
| 34 | + @test isempty(HE.longestmatches(SubString("This is \U201f abcd", 9))) |
35 | 35 | for (chrs, exp) in (("\u2270 abcd", ["nle", "nleq"]),
|
36 | 36 | ("\U1d4ab abcd", ["Pscr"]),
|
37 | 37 | ("\u2268\ufe00 silly", ["lvertneqq", "lvnE"]))
|
|
43 | 43 |
|
44 | 44 | @testset "completions" begin
|
45 | 45 | @test isempty(HE.completions("ScottPaulJones"))
|
46 |
| - @test isempty(EE.completions(SubString("My name is Scott", 12))) |
| 46 | + @test isempty(HE.completions(SubString("My name is Scott", 12))) |
47 | 47 | for (chrs, exp) in (("and", ["and", "andand", "andd", "andslope", "andv"]),
|
48 | 48 | ("um", ["umacr", "uml"]))
|
49 | 49 | res = HE.completions(chrs)
|
|
0 commit comments