Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
scottwedge committed Mar 20, 2020
1 parent 5548fc9 commit 2e3e83f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def test_graph_no_vertices(self):
# are no valid vertices
pandas_res = res.to_pandas()
for (index, row) in pandas_res.iterrows():
self.asertAlmostEqual(row["degree_centrality"], 0)
self.assertAlmostEqual(row["degree_centrality"], 0)

def _calculate_degree_centrality(self, vertices, edges):
"""calc the deg cen for a graph given by vert and edge frames"""
Expand Down

0 comments on commit 2e3e83f

Please sign in to comment.