From edeb3e3f07501e73b7192686b3cd7521e493e316 Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Tue, 9 Apr 2024 10:42:53 +1200 Subject: [PATCH] Update test/test_nlp_expr.jl --- test/test_nlp_expr.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_nlp_expr.jl b/test/test_nlp_expr.jl index ec5c29dd70b..8533e241ed4 100644 --- a/test/test_nlp_expr.jl +++ b/test/test_nlp_expr.jl @@ -1054,7 +1054,7 @@ function test_nlp_matrix_adjoint() y = sin.(x) @test isequal_canonical( @expression(model, expr, y' * y), - NonlinearExpr(:+, Any[0.0, y[2] * y[2], y[1] * y[1]]), + NonlinearExpr(:+, Any[0.0, y[2]*y[2], y[1]*y[1]]), ) return end