Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
adrhill committed Oct 1, 2024
1 parent 51113a7 commit 0812b11
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/ext/test_ForwardDiff.jl
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using SparseConnectivityTracer, ForwardDiff
using ForwardDiff: Dual, Partials, Tag
using SparseConnectivityTracer
using ForwardDiff: ForwardDiff

using Test

d = Dual{Tag{*,Float64}}(1.2, 3.4)
d = ForwardDiff.Dual{ForwardDiff.Tag{*,Float64}}(1.2, 3.4)
@testset "$D" for D in (TracerSparsityDetector, TracerLocalSparsityDetector)
detector = D()
# Testing on multiplication ensures that methods from Base have been overloaded,
Expand Down

0 comments on commit 0812b11

Please sign in to comment.