Skip to content

Commit f97ed47

Browse files
committed
Fix typo in test
1 parent 498a7fe commit f97ed47

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/runtests.jl

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ end
1818
@testset "matches" begin
1919
@test isempty(HE.matches(""))
2020
@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)))
2222
for (chrs, exp) in (("\u2270", ["nle", "nleq"]),
2323
("\U1d4ab", ["Pscr"]),
2424
("\U1d51e", ["afr"]),
@@ -31,7 +31,7 @@ end
3131

3232
@testset "longestmatches" begin
3333
@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)))
3535
for (chrs, exp) in (("\u2270 abcd", ["nle", "nleq"]),
3636
("\U1d4ab abcd", ["Pscr"]),
3737
("\u2268\ufe00 silly", ["lvertneqq", "lvnE"]))
@@ -43,7 +43,7 @@ end
4343

4444
@testset "completions" begin
4545
@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)))
4747
for (chrs, exp) in (("and", ["and", "andand", "andd", "andslope", "andv"]),
4848
("um", ["umacr", "uml"]))
4949
res = HE.completions(chrs)

0 commit comments

Comments
 (0)