Skip to content

Commit

Permalink
fix test to recognise change of sparse format
Browse files Browse the repository at this point in the history
  • Loading branch information
scottgigante committed Jun 12, 2018
1 parent 3b5c2d0 commit 62acd69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def test_pandas_dataframe():
def test_pandas_sparse_dataframe():
G = build_graph(pd.SparseDataFrame(data))
assert isinstance(G, graphtools.base.BaseGraph)
assert isinstance(G.data, sp.coo_matrix)
assert isinstance(G.data, sp.csr_matrix)


#####################################################
Expand Down

0 comments on commit 62acd69

Please sign in to comment.