Skip to content

Commit 24fc454

Browse files
Update test/runtests.jl
1 parent 444e5ab commit 24fc454

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test/runtests.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,12 +164,11 @@ using ArrayInterface: zeromatrix
164164
@test zeromatrix(rand(4,4,4)) == zeros(4*4*4,4*4*4)
165165

166166
using ArrayInterface: parent_type
167-
@testset "" begin
167+
@testset "Parent Type" begin
168168
x = ones(4, 4)
169169
@test parent_type(view(x, 1:2, 1:2)) <: typeof(x)
170170
@test parent_type(reshape(x, 2, :)) <: typeof(x)
171171
@test parent_type(transpose(x)) <: typeof(x)
172172
@test parent_type(Symmetric(x)) <: typeof(x)
173173
@test parent_type(UpperTriangular(x)) <: typeof(x)
174174
end
175-

0 commit comments

Comments
 (0)