Skip to content

Commit

Permalink
Make it a tuple
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasnoack authored Nov 29, 2020
1 parent ce272ec commit 317859d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/PartialsTest.jl
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ for N in (0, 3), T in (Int, Float32, Float64)
end

io = IOBuffer()
show(io, MIME("text/plain"), Partials(1, 2, 3))
show(io, MIME("text/plain"), Partials((1, 2, 3)))
str = String(take!(io))
@test str == "3-element $(ForwardDiff.Partials{3,Int}):\n 1\n 2\n 3"

Expand Down

0 comments on commit 317859d

Please sign in to comment.