Skip to content

Commit

Permalink
Improve variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
emstoudenmire committed May 28, 2024
1 parent 6dce507 commit 6267636
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_namedgraph.jl
Original file line number Diff line number Diff line change
Expand Up @@ -677,8 +677,8 @@ end
@test ne(st) == 4
@test nv(st) == 5
# Test that there are no degree-zero vertices in output:
zv = filter(v -> degree(st, v) == 0, vertices(st))
@test isempty(zv)
zero_deg_verts = filter(v -> degree(st, v) == 0, vertices(st))
@test isempty(zero_deg_verts)
for e in es
@test has_edge(st, e)
end
Expand Down

0 comments on commit 6267636

Please sign in to comment.