Skip to content

Commit

Permalink
fix sparse.to_coo reference
Browse files Browse the repository at this point in the history
  • Loading branch information
scottgigante committed Oct 4, 2019
1 parent 98c6d50 commit 7f90231
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -596,7 +596,7 @@ def test_download_url():
X = data.load_10X()
scprep.io.download.download_url("https://github.com/KrishnaswamyLab/scprep/raw/master/data/test_data/test_10X/matrix.mtx.gz", "url_test.mtx.gz")
Y = scprep.io.load_mtx("url_test.mtx.gz").T
assert (X.to_coo() - Y).nnz == 0
assert (X.sparse.to_coo() - Y).nnz == 0
os.remove("url_test.mtx.gz")

def test_download_zip():
Expand Down

0 comments on commit 7f90231

Please sign in to comment.