From 9ba86d8052b532e8e021f446403a63d4d0959612 Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Thu, 23 Nov 2023 07:41:01 -0500 Subject: [PATCH] Update test/rulesets/LinearAlgebra/structured.jl Co-authored-by: Frames White --- test/rulesets/LinearAlgebra/structured.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/rulesets/LinearAlgebra/structured.jl b/test/rulesets/LinearAlgebra/structured.jl index b64152204..3c0c7f92f 100644 --- a/test/rulesets/LinearAlgebra/structured.jl +++ b/test/rulesets/LinearAlgebra/structured.jl @@ -163,7 +163,7 @@ end @testset "Tridiagonal" begin - res, pb = rrule(Tridiagonal, [1, 4], [2, 3, 4], [5, 3]) + test_rrule(Tridiagonal, [1.0, 4.0], [2.0, 3.0, 4.0], [5.0, 3.0]) @test pb(10 * res) == (NoTangent(), [10, 40], [20, 30, 40], [50, 30]) end end