Skip to content

Commit be52b33

Browse files
committed
Tweak manual example and test to pass in GAP 4.9, 4.10
1 parent 4d6cab1 commit be52b33

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

doc/manual.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -526,8 +526,8 @@ gap> TensorWithField( K, GF(3) );
526526
<Lie algebra of dimension 3 over GF(3)>
527527
gap> TensorWithField( K, GF(2) );
528528
<Lie algebra of dimension 1 over GF(2)>
529-
gap> TensorWithField( K, GF(5) );
530-
<Lie algebra of dimension 0 over GF(5)>
529+
gap> Dimension( TensorWithField( K, GF(5) ) );
530+
0
531531
</Example>
532532
</Description>
533533
</ManSection>

tst/liering02.tst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,8 @@ gap> TensorWithField( K, GF(3) );
159159
<Lie algebra of dimension 3 over GF(3)>
160160
gap> TensorWithField( K, GF(2) );
161161
<Lie algebra of dimension 1 over GF(2)>
162-
gap> TensorWithField( K, GF(5) );
163-
<Lie algebra of dimension 0 over GF(5)>
162+
gap> Dimension( TensorWithField( K, GF(5) ) );
163+
0
164164

165165
# doc/manual.xml:561-586
166166
gap> F := FreeGroup(IsSyllableWordsFamily,"a","b","c","d", "e", "f", "g");;

0 commit comments

Comments
 (0)