Skip to content

Commit e53e49e

Browse files
committed
Increase test coverage of gen_julia_code.jl
1 parent 90cb5be commit e53e49e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/code_gen_test.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ using LinearAlgebra, StaticArrays
4242
# Test Statically sized matrix
4343
(graph, crefs) = graph_ps_degopt([3 4 2 1 0.1 1.0])
4444
fname = tempname() * ".jl"
45-
lang = LangJulia(true, true)
45+
lang = LangJulia(true)
4646
begin
4747
gen_code(fname, graph, funname = "thisfunction",lang=lang)
4848
# and execution
@@ -56,7 +56,7 @@ using LinearAlgebra, StaticArrays
5656

5757
# Test precomputed nodes
5858
fname = tempname() * ".jl"
59-
lang = LangJulia(true, true)
59+
lang = LangJulia(true)
6060
begin
6161
gen_code(fname, graph, funname = "thisfunction2",precomputed_nodes=[:A,:A2])
6262
# and execution

0 commit comments

Comments
 (0)