Skip to content

Commit

Permalink
test: remove broken=true for BSpline derivative tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sathvikbhagavan committed Nov 17, 2023
1 parent 16f2bbf commit 6d9a705
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions test/derivative_tests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,7 @@ function test_derivatives(method, u, t; args = [], kwargs = [], name::String)
# t = t0
fdiff = forward_fdm(5, 1; geom = true)(func, t[1])
adiff = derivative(func, t[1])
if func isa BSplineInterpolation || func isa BSplineApprox
# Bug in BSplines
@test_broken isapprox(fdiff, adiff, atol = 1e-8)
else
@test isapprox(fdiff, adiff, atol = 1e-8)
end
@test isapprox(fdiff, adiff, atol = 1e-8)

# t = tend
fdiff = backward_fdm(5, 1; geom = true)(func, t[end])
Expand Down

0 comments on commit 6d9a705

Please sign in to comment.