We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93cd69a commit 372b8fcCopy full SHA for 372b8fc
test/tests.jl
@@ -40,7 +40,7 @@ end
40
# Its signature is kwarg_decl(m::Method, kwtype::DataType). The second argument
41
# should be the type of the kwsorter from the corresponding MethodTable.
42
@test isa(methods(M.j_1), Base.MethodList)
43
- get_mt(func) = VERSION ≥ v"1.13.0-DEV.647" ? Core.GlobalMethods : methods(func).mt
+ get_mt(func) = VERSION ≥ v"1.12" ? Core.methodtable : methods(func).mt
44
local mt = get_mt(M.j_1)
45
@test isa(mt, Core.MethodTable)
46
if Base.fieldindex(Core.MethodTable, :kwsorter, false) > 0
@@ -83,7 +83,7 @@ end
83
DSE.format(IMPORTS, buf, doc)
84
str = String(take!(buf))
85
@test occursin("\n - `Base`\n", str)
86
- if VERSION < v"1.13-DEV"
+ if VERSION < v"1.12"
87
@test occursin("\n - `Core`\n", str)
88
end
89
0 commit comments