Skip to content

Commit 6e94c3b

Browse files
committed
test assign to a view
1 parent a371238 commit 6e94c3b

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

test/test_manip.py

+7
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,13 @@ def test_reshape_copy(self):
3333
assert numpy.allclose(sp.to_numpy(a), [20, 1, 2, 3, 4, 5, 6, 7])
3434
assert numpy.allclose(sp.to_numpy(b), [[0, 1], [2, 3], [4, 5], [6, 7]])
3535

36+
def test_view_assign(self):
37+
a = sp.arange(0, 8, 1, sp.int32)
38+
b = a[1:7]
39+
b[0:4] = 22
40+
assert numpy.allclose(sp.to_numpy(a), [0, 22, 22, 22, 22, 5, 6, 7])
41+
assert numpy.allclose(sp.to_numpy(b), [22, 22, 22, 22, 5, 6])
42+
3643
@pytest.mark.skipif(len(device), reason="FIXME 64bit on GPU")
3744
def test_astype_f64i32(self):
3845
def doit(aapi, **kwargs):

0 commit comments

Comments
 (0)