Skip to content

Commit 4e02490

Browse files
committed
Remove Category from exports
Updated tests to use Unicode.Category
1 parent 8bea510 commit 4e02490

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

base/exports.jl

-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ export
2222
Serializer,
2323
Docs,
2424
Markdown,
25-
Category,
2625
Unicode,
2726

2827
# Types

test/unicode/properties.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -143,9 +143,9 @@ end
143143

144144
# check handling of CN category constants
145145
let c_ll = 'β', c_cn = '\u038B'
146-
@test charprop(Category.Code, c_ll) == Category.Ll
146+
@test charprop(Unicode.Category.Code, c_ll) == Unicode.Category.Ll
147147
# check codepoint with category code CN
148-
@test charprop(Category.Code, c_cn) == Category.Cn
148+
@test charprop(Unicode.Category.Code, c_cn) == Unicode.Category.Cn
149149
end
150150

151151
# Make sure fastplus is called for coverage

0 commit comments

Comments
 (0)