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 e1998c0 commit 20f3d68Copy full SHA for 20f3d68
test/runtests.jl
@@ -306,11 +306,13 @@ end
306
@test occursin(String(m.file), String(body.args[idx].file))
307
@test ex == code_expr(gcd, Tuple{Int,Int})
308
309
- m = first(methods(edit))
310
- sigs = signatures_at(String(m.file), m.line)
311
- @test !isempty(sigs)
312
- sigs = signatures_at(Base.find_source_file(String(m.file)), m.line)
313
+ if Base.VERSION < v"1.11.0-0"
+ m = first(methods(edit))
+ sigs = signatures_at(String(m.file), m.line)
+ @test !isempty(sigs)
+ sigs = signatures_at(Base.find_source_file(String(m.file)), m.line)
314
315
+ end
316
317
# issue #23
318
@test !isempty(signatures_at("script.jl", 9))
0 commit comments