Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions tst/naming.g
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ TestNaming := function(grpname, param...)
isSUContained := false,
);

if grpname = "SL" then
if grpname = "SL" or grpname = "GL" then
expected.isSLContained := true;
elif grpname = "SO" then
elif grpname = "SO" or grpname = "GO" or grpname = "Omega" then
if Length(param) = 2 and IsEvenInt(param[2]) then
Assert(0, IsOddInt(param[1]));
expected.isReducible := true;
Expand All @@ -24,7 +24,7 @@ TestNaming := function(grpname, param...)
fi;
elif grpname = "Sp" then
expected.isSpContained := true;
elif grpname = "SU" then
elif grpname = "SU" or grpname = "GU" then
expected.isSUContained := true;
else
Error("unsupported group type ", grpname);
Expand Down