Skip to content

Commit 081470d

Browse files
committed
Fixed test
1 parent 30e5bbd commit 081470d

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

test/test_tensoralgebraext.jl

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,12 @@ const elts = (Float32, Float64, Complex{Float32}, Complex{Float64})
5959
@test a_dest a_dest_dense
6060

6161
# vector vector
62-
@test_broken a_dest, dimnames_dest = contract(a3, (1, 2), a3, (2, 1))
63-
#=
62+
a_dest, dimnames_dest = contract(a3, (1, 2), a3, (2, 1))
6463
a_dest_dense, dimnames_dest_dense = contract(a3_dense, (1, 2), a3_dense, (2, 1))
6564
@test dimnames_dest == dimnames_dest_dense
6665
@test size(a_dest) == size(a_dest_dense)
6766
@test a_dest isa BlockSparseArray{elt,0}
6867
@test a_dest a_dest_dense
69-
=#
7068

7169
# outer product
7270
a_dest_dense, dimnames_dest_dense = contract(a3_dense, (1, 2), a3_dense, (3, 4))

0 commit comments

Comments
 (0)