From cb68ef6e6d611b7df7264b8426db7f9392a1074d Mon Sep 17 00:00:00 2001 From: Guillaume Dalle <22795598+gdalle@users.noreply.github.com> Date: Sun, 24 Nov 2024 14:16:30 +0100 Subject: [PATCH] Remove access to FDM method --- test/differentiation.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/differentiation.jl b/test/differentiation.jl index 03c2be4d4..ffa5b108b 100644 --- a/test/differentiation.jl +++ b/test/differentiation.jl @@ -41,9 +41,9 @@ using LinearAlgebra: Diagonal, dot @testset "default_differential_backend" begin @test default_differential_backend() isa AutoFiniteDifferences - @test length(fd51.method.grid) == 5 + @test length(fd51.fdm.grid) == 5 # check method order - @test typeof(fd51.method).parameters[2] == 1 + @test typeof(fd51.fdm).parameters[2] == 1 fd71 = AutoFiniteDifferences(central_fdm(7, 1)) @test set_default_differential_backend!(fd71) == fd71 @test default_differential_backend() == fd71