diff --git a/src/Test/test_linear.jl b/src/Test/test_linear.jl index a9d14d6abb..12e4e0a064 100644 --- a/src/Test/test_linear.jl +++ b/src/Test/test_linear.jl @@ -1736,9 +1736,9 @@ function test_linear_integration_Interval( @test MOI.get(model, MOI.PrimalStatus()) == MOI.FEASIBLE_POINT @test ≈(MOI.get(model, MOI.ObjectiveValue()), T(10), config) if _supports(config, MOI.DualObjectiveValue) - @test ≈(MOI.get(model, MOI.DualObjectiveValue()), T(10)) + @test ≈(MOI.get(model, MOI.DualObjectiveValue()), T(10), config) end - @test ≈(MOI.get(model, MOI.ConstraintPrimal(), c), T(10)) + @test ≈(MOI.get(model, MOI.ConstraintPrimal(), c), T(10), config) if _supports(config, MOI.ConstraintDual) @test MOI.get(model, MOI.ResultCount()) >= 1 @test MOI.get(model, MOI.DualStatus()) == MOI.FEASIBLE_POINT