Skip to content

Commit 38782d8

Browse files
authored
Update comments in tests
1 parent 3e4a0a1 commit 38782d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test_basics.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -706,14 +706,14 @@ arrayts = (Array, JLArray)
706706
@test a[Block(2, 2)[1:2, 2:3]] == b
707707
@test blockstoredlength(a) == 1
708708

709-
# Non-contiguous slicing.
709+
# Noncontiguous slicing.
710710
a = dev(BlockSparseArray{elt}(undef, [2, 3], [2, 3]))
711711
a[Block(1, 1)] = dev(randn(elt, 2, 2))
712712
a[Block(2, 2)] = dev(randn(elt, 3, 3))
713713
I = ([3, 5], [2, 4])
714714
@test Array(a[I...]) == Array(a)[I...]
715715

716-
# TODO: Fix this and turn it into a proper test.
716+
# Noncontiguous slicing.
717717
a = dev(BlockSparseArray{elt}(undef, [2, 3], [2, 3]))
718718
a[Block(1, 1)] = dev(randn(elt, 2, 2))
719719
a[Block(2, 2)] = dev(randn(elt, 3, 3))

0 commit comments

Comments
 (0)