Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAugspurger committed Mar 14, 2019
1 parent 6696f28 commit f433be8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/tests/arrays/sparse/test_array.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def test_from_spmatrix(self, format):

mat = scipy.sparse.random(10, 1, density=0.5, format=format)
result = SparseArray.from_spmatrix(mat)
np.testing.assert_array_equal(mat.data, result.sp_values)
tm.assert_numpy_array_equal(mat.data, result.sp_values)

def test_from_spmatrix_raises(self):
pytest.importorskip('scipy')
Expand Down

0 comments on commit f433be8

Please sign in to comment.