Skip to content

Commit b21a7a4

Browse files
committed
small cleanup
1 parent c292a66 commit b21a7a4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

test/sectors.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ end
6262
end
6363

6464
@testsuite "Fusion tensor and F-move" I -> begin
65-
(BraidingStyle(I) isa Bosonic && hasfusiontensor(I)) || return nothing
65+
hasfusiontensor(I) || return nothing
6666
for a in smallset(I), b in smallset(I), c in smallset(I)
6767
for e in (a, b), f in (b, c)
6868
for d in intersect((e, c), (a, f))
@@ -83,7 +83,7 @@ end
8383
end
8484
end
8585

86-
@testsuite "Fusion tensor and F-move and R-move" I -> begin
86+
@testsuite "Fusion tensor and R-move" I -> begin
8787
(BraidingStyle(I) isa Bosonic && hasfusiontensor(I)) || return nothing
8888
for a in smallset(I), b in smallset(I)
8989
for c in (a, b)

test/testsuite.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ testsuite_path = joinpath(
1414
)
1515
include(testsuite_path)
1616
17-
SectorTestSuite.test_sectortype(MySectorType)
17+
SectorTestSuite.test_sector(MySectorType)
1818
```
1919
2020
Additionally, this test suite exports the following convenience testing utilities:

0 commit comments

Comments
 (0)