Skip to content

Commit 809287f

Browse files
committed
Fixed CI
1 parent 76afd8e commit 809287f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_sparse_vector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def test_dok_array(self):
5656
assert vec.indices() == [0, 2, 4]
5757

5858
def test_csr_array(self):
59-
arr = csr_array(np.array([1, 0, 2, 0, 3, 0]))
59+
arr = csr_array(np.array([[1, 0, 2, 0, 3, 0]]))
6060
vec = SparseVector(arr)
6161
assert vec.to_list() == [1, 0, 2, 0, 3, 0]
6262
assert vec.indices() == [0, 2, 4]

0 commit comments

Comments
 (0)