From 47a9ed14103c8644e2e512b384a1d72a57aa6ccd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Olivier=20Gauth=C3=A9?= Date: Tue, 17 Sep 2024 15:11:09 -0400 Subject: [PATCH] remove tests on a[:,:] --- .../ext/BlockSparseArraysGradedAxesExt/test/runtests.jl | 5 ----- 1 file changed, 5 deletions(-) diff --git a/NDTensors/src/lib/BlockSparseArrays/ext/BlockSparseArraysGradedAxesExt/test/runtests.jl b/NDTensors/src/lib/BlockSparseArrays/ext/BlockSparseArraysGradedAxesExt/test/runtests.jl index a91982d10b..637955a5ac 100644 --- a/NDTensors/src/lib/BlockSparseArrays/ext/BlockSparseArraysGradedAxesExt/test/runtests.jl +++ b/NDTensors/src/lib/BlockSparseArrays/ext/BlockSparseArraysGradedAxesExt/test/runtests.jl @@ -157,7 +157,6 @@ const elts = (Float32, Float64, Complex{Float32}, Complex{Float64}) b = 2 * a @test block_nstored(b) == 2 @test Array(b) == 2 * Array(a) - @test a[:, :] isa BlockSparseArray # broken in 1.6 for i in 1:2 @test axes(b, i) isa GradedUnitRangeDual @test_broken axes(a[:, :], i) isa GradedUnitRangeDual @@ -178,7 +177,6 @@ const elts = (Float32, Float64, Complex{Float32}, Complex{Float64}) b = 2 * a @test block_nstored(b) == 2 @test Array(b) == 2 * Array(a) - @test a[:, :] isa BlockSparseArray # broken in 1.6 for i in 1:2 @test axes(b, i) isa GradedUnitRangeDual @test_broken axes(a[:, :], i) isa GradedUnitRangeDual @@ -227,9 +225,6 @@ const elts = (Float32, Float64, Complex{Float32}, Complex{Float64}) @test ax isa typeof(dual(r)) end - @test a[:, :] isa BlockSparseArray # broken in 1.6 - @test axes(a[:, :]) isa Tuple{BlockedOneTo,BlockedOneTo} # broken in 1.6 - I = [Block(1)[1:1]] @test size(a[I, :]) == (1, 4) @test size(a[:, I]) == (4, 1)