From 777684db285a4f138935d6c5aacfada8e04528ab Mon Sep 17 00:00:00 2001 From: kalmarek Date: Mon, 9 Apr 2018 13:01:21 +0200 Subject: [PATCH] fix tests for parametrised Automorphisms --- test/AutGroup-tests.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/AutGroup-tests.jl b/test/AutGroup-tests.jl index c4e688a..e7a1589 100644 --- a/test/AutGroup-tests.jl +++ b/test/AutGroup-tests.jl @@ -8,7 +8,7 @@ f = Groups.AutSymbol("a", 1, Groups.FlipAut(2)) @test isa(f, Groups.GSymbol) @test isa(f, Groups.AutSymbol) - @test isa(Groups.perm_autsymbol([1,2,3,4]), Groups.AutSymbol) + @test isa(Groups.perm_autsymbol(Int8.([1,2,3,4])), Groups.AutSymbol) @test isa(Groups.rmul_autsymbol(1,2), Groups.AutSymbol) @test isa(Groups.lmul_autsymbol(3,4), Groups.AutSymbol) @test isa(Groups.flip_autsymbol(3), Groups.AutSymbol)