Skip to content

Commit 3b9e65f

Browse files
committed
fix log spam
1 parent 8619572 commit 3b9e65f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/functions.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -489,9 +489,11 @@ end
489489
"; _=1, __=2"
490490
"; _..."
491491
"; _=1, __..."]
492+
local i = 0
492493
for req in params_req, opt in params_opt, va in params_va, kw in params_kw
493494
arg_str = join(filter(!isempty, (req, opt, va, kw)), ", ")
494-
f_str = "function f_placeholders($arg_str); end"
495+
f_str = "function f_placeholders$i($arg_str); end"
496+
i += 1
495497
@testset "$f_str" begin
496498
@test JuliaLowering.include_string(test_mod, f_str) isa Function
497499
end

0 commit comments

Comments
 (0)