From 3d210c6bb09e668880bca56b179bdcf607ec943b Mon Sep 17 00:00:00 2001 From: MilesCranmer Date: Sun, 20 Oct 2024 08:30:52 +0100 Subject: [PATCH] test: fix template expression call --- test/test_template_expression.jl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/test_template_expression.jl b/test/test_template_expression.jl index 2187ea33..26028838 100644 --- a/test/test_template_expression.jl +++ b/test/test_template_expression.jl @@ -35,8 +35,7 @@ # We can evaluate with this too: cX = [1.0 2.0; 3.0 4.0; 5.0 6.0] - out, completed = st_expr(cX) - @test completed + out = st_expr(cX) @test out ≈ [sin(1.0) + cos(5.0)^2, sin(2.0) + cos(6.0)^2] # And also check the contents: