From db2077ec37169f2a0cf3180a679d6a3991af1980 Mon Sep 17 00:00:00 2001 From: Martin Holters Date: Tue, 28 Nov 2023 08:03:36 +0100 Subject: [PATCH] Fix `current_exceptions` test on nightly (#810) The printing of the `UndefVarError` now includes the originating module. --- test/runtests.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/runtests.jl b/test/runtests.jl index fe39e2cab..f10763cf4 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -192,7 +192,7 @@ end DivideError: integer division error Stacktrace:.* - caused by: UndefVarError: `?__not_a_binding__`? not defined + caused by: UndefVarError: `?__not_a_binding__`? not defined( in `Main`)? Stacktrace:.* """s, sprint(show, excs_with_bts)) @@ -209,7 +209,7 @@ end ERROR: DivideError: integer division error Stacktrace:.* - caused by: UndefVarError: `?__not_a_binding__`? not defined + caused by: UndefVarError: `?__not_a_binding__`? not defined( in `Main`)? Stacktrace:.* """s, sprint(Base.display_error, excs_with_bts))