We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3c0d6b4 + c41ad62 commit fc2a577Copy full SHA for fc2a577
ext/plot.jl
@@ -371,8 +371,8 @@ function __initial_plot(
371
nblines = n + l
372
h = round(n / nblines; digits=2)
373
lay = Matrix{Any}(undef, 2, 1)
374
- lay[1, 1] = (label = :a, width = :auto, height = h)
375
- lay[2, 1] = (label = :b, blank = false)
+ lay[1, 1] = (label=:a, width=:auto, height=h)
+ lay[2, 1] = (label=:b, blank=false)
376
root = PlotNode(lay, [node_xp, node_u])
377
elseif !(node_xp isa EmptyPlot)
378
root = node_xp
@@ -416,8 +416,8 @@ function __initial_plot(
416
nblines += nc
417
h = round(nc / nblines; digits=2)
418
419
- lay[1, 1] = (label = :a, blank = false)
420
- lay[2, 1] = (label = :b, width = :auto, height = h)
+ lay[1, 1] = (label=:a, blank=false)
+ lay[2, 1] = (label=:b, width=:auto, height=h)
421
root = PlotNode(lay, [root, node_cocp])
422
end
423
test/runtests.jl
@@ -45,9 +45,9 @@ include("solution_example_path_constraints.jl")
45
46
@testset verbose = true showtiming = true "CTModels tests" begin
47
for name in (
48
- :plot,
+ :plot,
49
# :export_import,
50
- )
+ )
51
@testset "$(name)" begin
52
test_name = Symbol(:test_, name)
53
println("testing: ", string(name))
0 commit comments