From 165dc3a6178f31b096838e59f88f9dd1584b356c Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Thu, 2 Dec 2021 17:10:05 +1300 Subject: [PATCH] [Test] fix missing config --- src/Test/test_linear.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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