Skip to content

Commit 0c7a4dd

Browse files
committed
Adjust some tests
1 parent 6cc5a56 commit 0c7a4dd

6 files changed

Lines changed: 17 additions & 17 deletions

File tree

tst/testinstall/kernel/blister.tst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ e 3 and 2)
225225
gap> x:= [false,true,true,false];;
226226
gap> UniteBlist(Immutable(x), [true,true,false,false]);
227227
Error, UNITE_BLIST: <blist1> must be a mutable boolean list (not a list (boole\
228-
an,imm))
228+
an))
229229
gap> x;
230230
[ false, true, true, false ]
231231
gap> UniteBlist(x, [true,true,false,false]);
@@ -247,7 +247,7 @@ Error, UNITE_BLIST_LIST: <sub> must be a small list (not the value 'fail')
247247
gap> x:= [true,true,false];;
248248
gap> UniteBlistList([1,2,3], Immutable(x), [2,3]);
249249
Error, UNITE_BLIST_LIST: <blist> must be a mutable boolean list (not a list (b\
250-
oolean,imm))
250+
oolean))
251251
gap> x;
252252
[ true, true, false ]
253253
gap> UniteBlistList([1,2,3], x, [2,3]);
@@ -278,7 +278,7 @@ e 3 and 2)
278278
gap> x:= [false,true,true,false];;
279279
gap> IntersectBlist(Immutable(x), [true,true,false,false]);
280280
Error, INTER_BLIST: <blist1> must be a mutable boolean list (not a list (boole\
281-
an,imm))
281+
an))
282282
gap> x;
283283
[ false, true, true, false ]
284284
gap> IntersectBlist(x, [true,true,false,false]);
@@ -296,7 +296,7 @@ e 3 and 2)
296296
gap> x:= [false,true,true,false];;
297297
gap> SubtractBlist(Immutable(x), [true,true,false,false]);
298298
Error, SUBTR_BLIST: <blist1> must be a mutable boolean list (not a list (boole\
299-
an,imm))
299+
an))
300300
gap> x;
301301
[ false, true, true, false ]
302302
gap> SubtractBlist(x, [true,true,false,false]);
@@ -323,7 +323,7 @@ Error, FLIP_BLIST: <blist> must be a boolean list (not the value 'fail')
323323
gap> x:= [false,true,true,false];;
324324
gap> FlipBlist(Immutable(x));
325325
Error, FLIP_BLIST: <blist> must be a mutable boolean list (not a list (boolean\
326-
,imm))
326+
))
327327
gap> x;
328328
[ false, true, true, false ]
329329
gap> FLIP_BLIST(x);
@@ -347,7 +347,7 @@ Error, SET_ALL_BLIST: <blist> must be a boolean list (not the value 'fail')
347347
gap> x:= [false,true,true,false];;
348348
gap> SET_ALL_BLIST(Immutable(x));
349349
Error, SET_ALL_BLIST: <blist> must be a mutable boolean list (not a list (bool\
350-
ean,imm))
350+
ean))
351351
gap> x;
352352
[ false, true, true, false ]
353353
gap> SET_ALL_BLIST(x);
@@ -369,7 +369,7 @@ Error, CLEAR_ALL_BLIST: <blist> must be a boolean list (not the value 'fail')
369369
gap> x:= [false,true,true,false];;
370370
gap> CLEAR_ALL_BLIST(Immutable(x));
371371
Error, CLEAR_ALL_BLIST: <blist> must be a mutable boolean list (not a list (bo\
372-
olean,imm))
372+
olean))
373373
gap> x;
374374
[ false, true, true, false ]
375375
gap> CLEAR_ALL_BLIST(x);

tst/testinstall/kernel/gap.tst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ gap> TNUM_OBJ(Z(2));
169169
gap> TNUM_OBJ(rec());
170170
20
171171
gap> TNUM_OBJ([]);
172-
34
172+
27
173173

174174
#
175175
gap> TNAM_OBJ(0);

tst/testinstall/kernel/objects.tst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Error, You can't make a component object from a boolean or fail
2828
gap> SET_TYPE_COMOBJ([], fail);
2929
Error, You can't make a component object from a empty plain list
3030
gap> SET_TYPE_COMOBJ(MakeImmutable(rec()), fail);
31-
Error, You can't make a component object from a record (plain,imm)
31+
Error, You can't make a component object from a record (plain)
3232
gap> x:=rec();;
3333
gap> SET_TYPE_COMOBJ(x, t1c);
3434
<object>

tst/testinstall/kernel/range.tst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@ Error, INTER_RANGE: <range2> must be a range (not the value 'fail')
100100
gap> r := MakeImmutable([0..9]);
101101
[ 0 .. 9 ]
102102
gap> INTER_RANGE(r, [-1..1]);
103-
Error, INTER_RANGE: <range1> must be a mutable range (not a list (range,ssort,\
104-
imm))
103+
Error, INTER_RANGE: <range1> must be a mutable range (not a list (range,ssort)\
104+
)
105105
gap> r;
106106
[ 0 .. 9 ]
107107

tst/testinstall/list.tst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -362,10 +362,10 @@ false
362362
gap> TNAM_OBJ(x);
363363
"plain list"
364364
gap> TNAM_OBJ(y);
365-
"immutable plain list"
365+
"plain list"
366366
gap> IsSSortedList(y);;
367367
gap> TNAM_OBJ(y);
368-
"immutable dense non-homogeneous strictly-sorted plain list"
368+
"dense non-homogeneous strictly-sorted plain list"
369369

370370
# String, for a range
371371
gap> l := [5 .. 10];

tst/testinstall/listindex.tst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -227,8 +227,8 @@ gap> l := [];; Append(l,l); l;
227227
gap> l := [1,2,3,4];; Append(l,l); l;
228228
[ 1, 2, 3, 4, 1, 2, 3, 4 ]
229229
gap> Append(Immutable([1,2,3]), [1,2,3]);
230-
Error, FuncAPPEND_LIST_INTR: <list1> must be a mutable list (not an immutable \
231-
plain list of cyclotomics)
230+
Error, FuncAPPEND_LIST_INTR: <list1> must be a mutable list (not a plain list \
231+
of cyclotomics)
232232
gap> Append([1,2,3], () );
233233
Error, FuncAPPEND_LIST_INTR: <list2> must be a small list (not a permutation (\
234234
small))
@@ -284,8 +284,8 @@ gap> CopyListEntries(s,3,-1,"abc",4,-3,2);
284284
Error, COPY_LIST_ENTRIES: <tolst> must be a mutable plain list (not a list (st\
285285
ring))
286286
gap> CopyListEntries(s,3,-1,Immutable([1,2,3]),4,-3,2);
287-
Error, COPY_LIST_ENTRIES: <tolst> must be a mutable plain list (not an immutab\
288-
le plain list of cyclotomics)
287+
Error, COPY_LIST_ENTRIES: <tolst> must be a mutable plain list (not a plain li\
288+
st of cyclotomics)
289289
gap> CopyListEntries(s, "cheese", 1, l, 1, 1, 2);
290290
Error, CopyListEntries: <fromind> must be a small integer (not a list (string)\
291291
)

0 commit comments

Comments
 (0)