Skip to content

Commit 2d577ad

Browse files
committed
Fix printing
1 parent 6b3441f commit 2d577ad

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

test/compiler.jl

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -397,9 +397,9 @@ end
397397
t_mv = @elapsed res = sample(vdemo5(), alg, 1000)
398398

399399
println("Time for")
400-
println(" Loop : $t_loop")
401-
println(" Vec : $t_vec")
402-
println(" Mv : $t_mv")
400+
println(" Loop : ", t_loop)
401+
println(" Vec : ", t_vec)
402+
println(" Mv : ", t_mv)
403403

404404
# Transformed test
405405
@model vdemo6() = begin
@@ -469,9 +469,9 @@ end
469469
t_mv = @elapsed res = sample(vdemo5(), alg, 1000)
470470

471471
println("Time for")
472-
println(" Loop : \$t_loop")
473-
println(" Vec : \$t_vec")
474-
println(" Mv : \$t_mv")
472+
println(" Loop : ", t_loop)
473+
println(" Vec : ", t_vec)
474+
println(" Mv : ", t_mv)
475475

476476
# Transformed test
477477
@model vdemo6() = begin

0 commit comments

Comments
 (0)