Skip to content

Commit

Permalink
Fix assertion bug in test
Browse files Browse the repository at this point in the history
  • Loading branch information
hagberg committed Jul 25, 2013
1 parent 1270e10 commit ef75abd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion networkx/readwrite/tests/test_gexf.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,4 +310,4 @@ def test_bool(self):
nx.write_gexf(G,fh)
fh.seek(0)
H=nx.read_gexf(fh,node_type=int)
assert_true(H.node[1]['testattr'], True)
assert_equal(H.node[1]['testattr'], True)

0 comments on commit ef75abd

Please sign in to comment.