Skip to content

Commit b41b9c3

Browse files
authored
[GradedAxes] Introduce LabelledUnitRangeDual (#1571)
1 parent 3686cd7 commit b41b9c3

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

ext/BlockSparseArraysGradedAxesExt/test/runtests.jl

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@eval module $(gensym())
22
using Compat: Returns
3-
using Test: @test, @testset, @test_broken
3+
using Test: @test, @testset
44
using BlockArrays:
55
AbstractBlockArray, Block, BlockedOneTo, blockedrange, blocklengths, blocksize
66
using NDTensors.BlockSparseArrays: BlockSparseArray, block_nstored
@@ -217,10 +217,10 @@ const elts = (Float32, Float64, Complex{Float32}, Complex{Float64})
217217
@test size(a[I, I]) == (1, 1)
218218
@test isdual(axes(a[I, :], 2))
219219
@test isdual(axes(a[:, I], 1))
220-
@test_broken isdual(axes(a[I, :], 1))
221-
@test_broken isdual(axes(a[:, I], 2))
222-
@test_broken isdual(axes(a[I, I], 1))
223-
@test_broken isdual(axes(a[I, I], 2))
220+
@test isdual(axes(a[I, :], 1))
221+
@test isdual(axes(a[:, I], 2))
222+
@test isdual(axes(a[I, I], 1))
223+
@test isdual(axes(a[I, I], 2))
224224
end
225225

226226
@testset "dual GradedUnitRange" begin
@@ -243,10 +243,10 @@ const elts = (Float32, Float64, Complex{Float32}, Complex{Float64})
243243
@test size(a[I, I]) == (1, 1)
244244
@test isdual(axes(a[I, :], 2))
245245
@test isdual(axes(a[:, I], 1))
246-
@test_broken isdual(axes(a[I, :], 1))
247-
@test_broken isdual(axes(a[:, I], 2))
248-
@test_broken isdual(axes(a[I, I], 1))
249-
@test_broken isdual(axes(a[I, I], 2))
246+
@test isdual(axes(a[I, :], 1))
247+
@test isdual(axes(a[:, I], 2))
248+
@test isdual(axes(a[I, I], 1))
249+
@test isdual(axes(a[I, I], 2))
250250
end
251251

252252
@testset "dual BlockedUnitRange" begin # self dual

0 commit comments

Comments
 (0)