Skip to content

Commit 8d8af92

Browse files
fix require_stdlib in Base.runtests error path
1 parent 84ae351 commit 8d8af92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

base/util.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -695,7 +695,7 @@ function runtests(tests = ["all"]; ncores::Int = ceil(Int, Sys.CPU_THREADS / 2),
695695
catch
696696
buf = PipeBuffer()
697697
original_load_path = copy(Base.LOAD_PATH); empty!(Base.LOAD_PATH); pushfirst!(Base.LOAD_PATH, "@stdlib")
698-
let InteractiveUtils = Base.require_stdlib(Base, :InteractiveUtils)
698+
let InteractiveUtils = Base.require_stdlib(Base.PkgId(Base.UUID(0xb77e0a4c_d291_57a0_90e8_8db25a27a240), "InteractiveUtils"))
699699
@invokelatest InteractiveUtils.versioninfo(buf)
700700
end
701701
empty!(Base.LOAD_PATH); append!(Base.LOAD_PATH, original_load_path)

0 commit comments

Comments
 (0)