From 0c60dce7319d89514e052423652c58a4617f7cbc Mon Sep 17 00:00:00 2001 From: Marek Kaluba Date: Wed, 7 Jul 2021 12:11:45 +0200 Subject: [PATCH] fix test_throws --- test/fp_groups.jl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/fp_groups.jl b/test/fp_groups.jl index 89d83b5..4e4f624 100644 --- a/test/fp_groups.jl +++ b/test/fp_groups.jl @@ -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])