We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1f0732 commit 10bb07cCopy full SHA for 10bb07c
test/differentials/composite.jl
@@ -35,7 +35,7 @@ end
35
@test Composite{Foo}(y=2.5, x=Zero()) == Composite{Foo}(y=2.5)
36
37
@test Composite{Tuple{Float64,}}(2.0) == Composite{Tuple{Float64,}}(2.0)
38
- @test Composite{Dict}(Dict(4 => 3) == Composite{Dict}(Dict(4 => 3)
+ @test Composite{Dict}(Dict(4 => 3)) == Composite{Dict}(Dict(4 => 3))
39
40
end
41
@@ -100,8 +100,8 @@ end
100
)
101
102
@test ==(
103
- canonicalize(Composite{Dict}(Dict(4 => 3))))
104
- Composite{Dict}(Dict(4 => 3)))
+ canonicalize(Composite{Dict}(Dict(4 => 3))),
+ Composite{Dict}(Dict(4 => 3)),
105
106
107
# For structure it needs to match order and Zero() fill to match primal
0 commit comments