Skip to content

Commit

Permalink
test: fix output type test
Browse files Browse the repository at this point in the history
  • Loading branch information
inkydragon committed Jan 23, 2025
1 parent ca18d62 commit 10d12f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/dense.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1314,7 +1314,7 @@ end
A = Matrix{Float64}(undef, 0, 0)
@test cbrt(A) == A
A = Matrix{Int}(undef, 0, 0)
@test cbrt(A) isa Matrix{Float64}
@test cbrt(A) isa Matrix{Int}
end
end

Expand Down

0 comments on commit 10d12f1

Please sign in to comment.