Skip to content

Commit d2da757

Browse files
committed
format
1 parent 9bdd092 commit d2da757

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

test/fusiontrees.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ println("------------------------------------")
44
ti = time()
55
@timedtestset "Fusion trees for $(TensorKit.type_repr(I))" verbose = true for I in
66
sectorlist
7+
78
Istr = TensorKit.type_repr(I)
89
N = 5
910
out = ntuple(n -> randsector(I), N)
@@ -548,7 +549,8 @@ ti = time()
548549
@testset "Double fusion tree $Istr: planar trace" begin
549550
d1 = transpose(f1, f1, (N + 1, 1:N..., ((2N):-1:(N + 3))...), (N + 2,))
550551
f1front, = TK.split(f1, N - 1)
551-
T = typeof(Fsymbol(unit(I), unit(I), unit(I), unit(I), unit(I), unit(I))[1, 1, 1, 1]) #TODO: change to _fscalartype
552+
T = typeof(Fsymbol(unit(I), unit(I), unit(I), unit(I), unit(I), unit(I))[1, 1, 1,
553+
1]) #TODO: change to _fscalartype
552554
d2 = Dict{typeof((f1front, f1front)),T}()
553555
for ((f1′, f2′), coeff′) in d1
554556
for ((f1′′, f2′′), coeff′′) in

test/spaces.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,8 @@ println("------------------------------------")
211211
@test @constinferred(unitspace(V)) == W == unitspace(typeof(V))
212212
@test @constinferred(zerospace(V)) == GradedSpace(unit(I) => 0)
213213
# randsector never returns trivial sector, so this cannot error
214-
@test_throws ArgumentError GradedSpace(unit(I) => 1, randsector(I) => 0, unit(I) => 3)
214+
@test_throws ArgumentError GradedSpace(unit(I) => 1, randsector(I) => 0,
215+
unit(I) => 3)
215216
@test eval(Meta.parse(sprint(show, W))) == W
216217
@test isa(V, VectorSpace)
217218
@test isa(V, ElementarySpace)

0 commit comments

Comments
 (0)