Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
dcerkoney committed Oct 26, 2023
1 parent 776f328 commit 2b18b45
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/computational_graph.jl
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ end
@test h8.subgraph_factors == [36]
@test isequiv(h7_lc, h8, :id)
end
@testset "Merge multi prodict" begin
@testset "Merge multi-pproduct" begin
g1 = Graph([])
g2 = Graph([], factor=2)
g3 = Graph([], factor=3)
Expand Down Expand Up @@ -330,7 +330,7 @@ end
Graphs.flatten_all_chains!(rvec)
@test rvec == [r1, r2, r3]
end
@testset "merge all linear combinations" begin
@testset "Merge all linear combinations" begin
g1 = Graph([])
g2 = 2 * g1
g3 = Graph([], factor=3.0)
Expand All @@ -348,7 +348,7 @@ end
Graphs.merge_all_linear_combinations!(h0)
@test isequiv(h0.subgraphs[1], _h, :id)
end
@testset "Merge all multi prodicts" begin
@testset "Merge all multi-products" begin
g1 = Graph([])
g2 = Graph([], factor=2)
g3 = Graph([], factor=3)
Expand Down

0 comments on commit 2b18b45

Please sign in to comment.