From 10b0885ca76c7740912d258937cf393c8cc9092d Mon Sep 17 00:00:00 2001 From: Fredrik Ekre Date: Wed, 21 Mar 2018 12:02:11 +0100 Subject: [PATCH] MethodTable no longer exported from Core to Base, see JuliaLang/julia/pull/25802 --- test/tests.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/tests.jl b/test/tests.jl index dcfc577..5356547 100644 --- a/test/tests.jl +++ b/test/tests.jl @@ -75,7 +75,7 @@ end @test isa(methods(M.j_1), Base.MethodList) @test isdefined(methods(M.j_1), :mt) local mt = methods(M.j_1).mt - @test isa(mt, Base.MethodTable) + @test isa(mt, Core.MethodTable) @test isdefined(mt, :kwsorter) # .kwsorter is not always defined -- namely, it seems when none of the methods # have keyword arguments: