Skip to content

Commit

Permalink
fix for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
antonydellavecchia committed Feb 21, 2024
1 parent af6aa79 commit b3c8864
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/Combinatorics/PhylogeneticTrees.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@testset "Phylogenetic Trees" begin
ptree1 = phylogenetic_tree(Float64, "((A:4,B:4):5,C:9);")
test_tree = graph_from_edges([[2, 1], [3, 2], [4, 2], [5, 1]])
test_tree = graph_from_edges(Directed, [[1, 2], [2, 3], [2, 4], [1, 5]])
@test is_isomorphic(adjacency_tree(ptree1), test_tree)
@test equidistant(ptree1) == true

Expand Down

0 comments on commit b3c8864

Please sign in to comment.