Skip to content

Commit 82ed758

Browse files
committed
Fix a broken test
This test gets triggered only when running Revise, so it got missed for a while.
1 parent 4a5b6c0 commit 82ed758

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/breakpoints.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ end
101101
breakpoint(String(method.file), method.line+1)
102102
frame = JuliaInterpreter.enter_call(loop_radius2, 2)
103103
ret = @interpret JuliaInterpreter.locals(frame)
104-
@test isa(ret, JuliaInterpreter.BreakpointRef)
104+
@test isa(ret, Tuple{Frame,JuliaInterpreter.BreakpointRef})
105105
# Test kwarg method
106106
remove()
107107
bp = breakpoint(tmppath, 3)

0 commit comments

Comments
 (0)