Skip to content

Commit 046d2b0

Browse files
committed
fix macro
1 parent 48edc0e commit 046d2b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test_contraction.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ end
7676
]
7777
t2 = @eval reshape(Base.$f(sds22), (2, 2, 2, 2))
7878
ft2 = to_fusiontensor(t2, (g2, g2), (dual(g2), dual(g2)))
79-
@test (@eval TensorAlgebra.$f(ft, (1, 2, 3, 4), (1, 2), (3, 4))) ft2
79+
@test (@eval TensorAlgebra.$f)(ft, (1, 2, 3, 4), (1, 2), (3, 4)) ft2
8080
end
8181
@test_throws ArgumentError TensorAlgebra.exp(ft, (1, 2, 3, 4), (1, 2, 3), (4,))
8282
@test_throws ArgumentError TensorAlgebra.exp(ft, (1, 2, 3, 4), (1, 3), (2, 4))
@@ -108,7 +108,7 @@ end
108108
@test m3 2m1 * m2
109109
end
110110

111-
@testset "TensorAlgebra interface" begin
111+
@testset "TensorAlgebra.contract interface" begin
112112
g1 = gradedrange([U1(0) => 1, U1(1) => 2, U1(2) => 3])
113113
g2 = gradedrange([U1(0) => 2, U1(1) => 2, U1(3) => 1])
114114
g3 = gradedrange([U1(-1) => 1, U1(0) => 2, U1(1) => 1])

0 commit comments

Comments
 (0)