diff --git a/test/AutGroup-tests.jl b/test/AutGroup-tests.jl index 54cc0f0..50621e2 100644 --- a/test/AutGroup-tests.jl +++ b/test/AutGroup-tests.jl @@ -266,6 +266,8 @@ @test Groups.abelianize(σ^3) == Matrix{Int}(I, N, N) @test Groups.abelianize(σ)^3 == Matrix{Int}(I, N, N) + @test Groups.abelianize(G(Groups.id_autsymbol())) == Matrix{Int}(I, N, N) + function test_homomorphism(S, r) for elts in Iterators.product([[g for g in S] for _ in 1:r]...) prod(Groups.abelianize.(elts)) == Groups.abelianize(prod(elts)) || error("linear representaton test failed at $elts")