Skip to content

Commit 786e153

Browse files
committed
fix log spam
1 parent df49140 commit 786e153

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
@@ -444,9 +444,11 @@ end
444444
"; _=1, __=2"
445445
"; _..."
446446
"; _=1, __..."]
447+
local i = 0
447448
for req in params_req, opt in params_opt, va in params_va, kw in params_kw
448449
arg_str = join(filter(!isempty, (req, opt, va, kw)), ", ")
449-
f_str = "function f_placeholders($arg_str); end"
450+
f_str = "function f_placeholders$i($arg_str); end"
451+
i += 1
450452
@testset "$f_str" begin
451453
@test JuliaLowering.include_string(test_mod, f_str) isa Function
452454
end

0 commit comments

Comments
 (0)