Skip to content

Commit

Permalink
Changed name of test_fancy_indexing defined inside TestLIL to
Browse files Browse the repository at this point in the history
test_fancy_indexing_lil to prevent the method in _TestFancyIndexing from
getting overridden.
  • Loading branch information
Daniel B. Smith authored and Daniel B. Smith committed Mar 4, 2013
1 parent cb42901 commit a48089f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scipy/sparse/tests/test_base.py
Expand Up @@ -1958,7 +1958,7 @@ def test_lil_from_csr(self):
D = lil_matrix(C)
assert_array_equal(C.A, D.A)

def test_fancy_indexing(self):
def test_fancy_indexing_lil(self):
M = arange(25).reshape(5,5)
A = lil_matrix( M )

Expand Down

0 comments on commit a48089f

Please sign in to comment.