Skip to content

Commit 10bb07c

Browse files
authored
Fix missing brackets
1 parent f1f0732 commit 10bb07c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/differentials/composite.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ end
3535
@test Composite{Foo}(y=2.5, x=Zero()) == Composite{Foo}(y=2.5)
3636

3737
@test Composite{Tuple{Float64,}}(2.0) == Composite{Tuple{Float64,}}(2.0)
38-
@test Composite{Dict}(Dict(4 => 3) == Composite{Dict}(Dict(4 => 3)
38+
@test Composite{Dict}(Dict(4 => 3)) == Composite{Dict}(Dict(4 => 3))
3939

4040
end
4141

@@ -100,8 +100,8 @@ end
100100
)
101101

102102
@test ==(
103-
canonicalize(Composite{Dict}(Dict(4 => 3))))
104-
Composite{Dict}(Dict(4 => 3)))
103+
canonicalize(Composite{Dict}(Dict(4 => 3))),
104+
Composite{Dict}(Dict(4 => 3)),
105105
)
106106

107107
# For structure it needs to match order and Zero() fill to match primal

0 commit comments

Comments
 (0)