We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea522b8 commit 5700dccCopy full SHA for 5700dcc
test/breakpoints.jl
@@ -520,7 +520,7 @@ end
520
return 2
521
end
522
frame = JuliaInterpreter.enter_call(f_macro)
523
- file_logging = "logging.jl"
+ file_logging = String(only(methods(var"@info")).file)
524
line_logging = 0
525
for entry in frame.framecode.src.linetable
526
if entry.file === Symbol(file_logging)
@@ -534,7 +534,7 @@ end
534
@test bp isa BreakpointRef
535
file, ln = JuliaInterpreter.whereis(frame)
536
@test ln == line_logging
537
- @test basename(file) == file_logging
+ @test basename(file) == basename(file_logging)
538
bp = JuliaInterpreter.finish_stack!(frame)
539
540
frame = leaf(frame)
0 commit comments