Skip to content

Commit 56c3f99

Browse files
authored
Apply suggestions from code review
1 parent ee07c24 commit 56c3f99

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Test/test_conic.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5826,14 +5826,14 @@ function test_conic_PositiveSemidefiniteConeTriangle_4(
58265826
x_primal = MOI.get.(model, MOI.VariablePrimal(), x)
58275827
@test (x_primal, ones(T, 3) ./ T(6), config)
58285828
y_primal = MOI.get.(model, MOI.VariablePrimal(), y)
5829-
@test (y_primal, T[1, -1, 1] ./ T(2) config)
5829+
@test (y_primal, T[1, -1, 1] ./ T(2), config)
58305830
if _supports(config, MOI.ConstraintDual)
58315831
@test MOI.get(model, MOI.DualStatus()) == MOI.FEASIBLE_POINT
58325832
x_dual = MOI.get(model, MOI.ConstraintDual(), cx)
5833-
@test (x_dual, [1, -1, 1] ./ T(3) config)
5833+
@test (x_dual, [1, -1, 1] ./ T(3), config)
58345834
y_dual = MOI.get(model, MOI.ConstraintDual(), cy)
5835-
@test (y_dual, ones(T, 3) ./ T(3) config)
5836-
@test (MOI.get(model, MOI.ConstraintDual(), c1), T(2) / T(3) config)
5835+
@test (y_dual, ones(T, 3) ./ T(3), config)
5836+
@test (MOI.get(model, MOI.ConstraintDual(), c1), T(2) / T(3), config)
58375837
@test (MOI.get(model, MOI.ConstraintDual(), c2), T(1) / T(3), config)
58385838
end
58395839
return

0 commit comments

Comments
 (0)