Skip to content

Commit

Permalink
mend
Browse files Browse the repository at this point in the history
  • Loading branch information
simonschoelly committed Sep 24, 2022
1 parent 4152778 commit 000136b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/traversals/dfs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@

@testset "is_cyclic" begin
for g in testgraphs(path_graph(2))
@test @inferred(is_cyclic(GenericGraph(g)))
@test @inferred(!is_cyclic(GenericGraph(zero(g))))
@test !@inferred(is_cyclic(GenericGraph(g)))
@test !@inferred(is_cyclic(GenericGraph(zero(g))))
end
for g in testgraphs(gcyclic)
@test @inferred(is_cyclic(g))
Expand Down

0 comments on commit 000136b

Please sign in to comment.