Skip to content

Commit 5234fcd

Browse files
committed
🤖 Format .jl files
1 parent 93a6846 commit 5234fcd

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/test_allocations.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,31 +11,31 @@ end
1111
@testset "allocs QPSData" begin
1212
for problem in qp_problems_Matrix
1313
nlp_qps = eval(Symbol(problem * "_QPSData"))()
14-
allocs = test_allocs_nlpmodels(nlp_qps; linear_api=true, exclude=[jac_op])
14+
allocs = test_allocs_nlpmodels(nlp_qps; linear_api = true, exclude = [jac_op])
1515
test_only_zeros(allocs)
1616
end
1717
end
1818

1919
@testset "allocs QP_dense" begin
2020
for problem in qp_problems_Matrix
2121
nlp_qm_dense = eval(Symbol(problem * "_QP_dense"))()
22-
allocs = test_allocs_nlpmodels(nlp_qm_dense; linear_api=true, exclude=[jac_op])
22+
allocs = test_allocs_nlpmodels(nlp_qm_dense; linear_api = true, exclude = [jac_op])
2323
test_only_zeros(allocs)
2424
end
2525
end
2626

2727
@testset "allocs COO QPSData" begin
2828
for problem in qp_problems_COO
2929
nlp_qps = eval(Symbol(problem * "_QPSData"))()
30-
allocs = test_allocs_nlpmodels(nlp_qps; linear_api=true, exclude=[jac_op])
30+
allocs = test_allocs_nlpmodels(nlp_qps; linear_api = true, exclude = [jac_op])
3131
test_only_zeros(allocs)
3232
end
3333
end
3434

3535
@testset "allocs COO QP" begin
3636
for problem in qp_problems_COO
3737
nlp_qm_dense = eval(Symbol(problem * "_QP"))()
38-
allocs = test_allocs_nlpmodels(nlp_qm_dense; linear_api=true, exclude=[jac_op])
38+
allocs = test_allocs_nlpmodels(nlp_qm_dense; linear_api = true, exclude = [jac_op])
3939
test_only_zeros(allocs)
4040
end
4141
end
@@ -45,7 +45,7 @@ end
4545
nlp = eval(Symbol(problem))()
4646
x = nlp.meta.x0
4747
nlp_qm = QuadraticModel(nlp, x)
48-
allocs = test_allocs_nlpmodels(nlp_qm; linear_api=true, exclude=[jac_op])
48+
allocs = test_allocs_nlpmodels(nlp_qm; linear_api = true, exclude = [jac_op])
4949
test_only_zeros(allocs)
5050
end
5151
end

0 commit comments

Comments
 (0)