Skip to content

Commit

Permalink
shorter vectors for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mateuszbaran committed Nov 17, 2023
1 parent 9871850 commit c8a3cd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/groups/power_group.jl
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ include("group_utils.jl")
@test G isa PowerGroup
@test is_point(G, rand(Random.GLOBAL_RNG, G))
pts = [rand(G) for _ in 1:3]
X_pts = [rand(G; vector_at=pts[1]) for _ in 1:3]
X_pts = [0.5 * rand(G; vector_at=pts[1]) for _ in 1:3]

@test compose(G, pts[1], Identity(G)) == pts[1]
@test compose(G, Identity(G), pts[1]) == pts[1]
Expand Down

0 comments on commit c8a3cd0

Please sign in to comment.