fix test_throws

This commit is contained in:
Marek Kaluba 2021-07-07 12:11:45 +02:00
parent 9415906aa2
commit 0c60dce731
No known key found for this signature in database
GPG Key ID: 8BF1A3855328FC15
1 changed files with 4 additions and 1 deletions

View File

@ -46,7 +46,10 @@
@test h isa FPGroupElement
@test_throws AssertionError h == g
@test_throws AssertionError h*g
@test_throws MethodError h*g
H = FPGroup(G, [aG^2=>cG, bG*cG=>aG], maxrules=200)
@test_throws AssertionError one(H) == one(H)
Groups.normalform!(h)
@test h == H([5])