Skip to content

Commit

Permalink
Avoid incorrect pluralizations in test output
Browse files Browse the repository at this point in the history
  • Loading branch information
wilfwilson authored and fingolfin committed Jul 24, 2020
1 parent 85f783d commit c6e337c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
8 changes: 5 additions & 3 deletions tst/example.tst
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,11 @@ false
#
gap> g9 := ReducibleNilpotentMatGroupFF(2, 4*9,5,2);
<matrix group with 21 generators>
gap> SylowSubgroupsOfNilpotentFFMatGroup(g9);
[ <matrix group with 5 generators>, <matrix group with 6 generators>,
<matrix group with 1 generators> ]
gap> x := SylowSubgroupsOfNilpotentFFMatGroup(g9);;
gap> ForAll(x, IsMatrixGroup);
true
gap> List(x, g -> Length(GeneratorsOfGroup(g)));
[ 5, 6, 1 ]

# Using library functions
#
Expand Down
8 changes: 5 additions & 3 deletions tst/manual.tst
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,11 @@ false
#
gap> g9 := ReducibleNilpotentMatGroup(2,36,5,2);
<matrix group with 21 generators>
gap> SylowSubgroupsOfNilpotentFFMatGroup(g9);
[ <matrix group with 5 generators>, <matrix group with 6 generators>,
<matrix group with 1 generators> ]
gap> x := SylowSubgroupsOfNilpotentFFMatGroup(g9);;
gap> ForAll(x, IsMatrixGroup);
true
gap> List(x, g -> Length(GeneratorsOfGroup(g)));
[ 5, 6, 1 ]
gap> IsCompletelyReducibleNilpotentMatGroup(g9);
false

Expand Down

0 comments on commit c6e337c

Please sign in to comment.