Skip to content

Commit

Permalink
Fix current_exceptions test on nightly (#810)
Browse files Browse the repository at this point in the history
The printing of the `UndefVarError` now includes the originating module.
  • Loading branch information
martinholters authored Nov 28, 2023
1 parent d687917 commit db2077e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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))

Expand All @@ -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))

Expand Down

0 comments on commit db2077e

Please sign in to comment.