Skip to content

Commit

Permalink
fix excluded funcs names
Browse files Browse the repository at this point in the history
  • Loading branch information
alyst committed Sep 9, 2022
1 parent a68534a commit 1d38eac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/JacobianTest.jl
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ end
# FIMXE use @test ... broken= once Julia v1.0 support is dropped
(f == DiffTests.sparse_ldiv) && continue
# required ldiv!(triag, adjoint) that is not implemented in 1.0
(VERSION < v"1.1") && (f in [DiffTests.utriag_div, DiffTests.ltriag_div, DiffTests.sp_utriag_div, DiffTests.sp_ltriag_div]) && continue
(VERSION < v"1.1") && (f in [DiffTests.utriag_ldiv, DiffTests.ltriag_ldiv, DiffTests.sp_utriag_ldiv, DiffTests.sp_ltriag_ldiv]) && continue

v = f(X)
j = ForwardDiff.jacobian(f, X)
Expand Down Expand Up @@ -137,7 +137,7 @@ end
# FIMXE use @test ... broken= once Julia v1.0 support is dropped
(f == DiffTests.sparse_ldiv) && continue
# required ldiv!(triag, adjoint) that is not implemented in 1.0
(VERSION < v"1.1") && (f in [DiffTests.utriag_div, DiffTests.ltriag_div, DiffTests.sp_utriag_div, DiffTests.sp_ltriag_div]) && continue
(VERSION < v"1.1") && (f in [DiffTests.utriag_ldiv, DiffTests.ltriag_ldiv, DiffTests.sp_utriag_ldiv, DiffTests.sp_ltriag_ldiv]) && continue

v = f(XX)
j = ForwardDiff.jacobian(f, XX)
Expand Down

0 comments on commit 1d38eac

Please sign in to comment.