From d3d5633ab9bd29b6589db4db97d2f5f6d6ba8def Mon Sep 17 00:00:00 2001 From: kalmarek Date: Fri, 27 Oct 2017 16:20:06 +0200 Subject: [PATCH] fix tests --- test/AutGroup-tests.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/AutGroup-tests.jl b/test/AutGroup-tests.jl index e7adc3d..ea0d6cb 100644 --- a/test/AutGroup-tests.jl +++ b/test/AutGroup-tests.jl @@ -5,7 +5,7 @@ @testset "AutSymbol" begin @test_throws MethodError Groups.AutSymbol("a") @test_throws MethodError Groups.AutSymbol("a", 1) - f = Groups.AutSymbol("a", 1, :(a())) + f = Groups.AutSymbol("a", 1, Groups.FlipAut(2)) @test isa(f, Groups.GSymbol) @test isa(f, Groups.AutSymbol) @test isa(Groups.perm_autsymbol(G([1,2,3,4])), Groups.AutSymbol) @@ -83,7 +83,7 @@ end @testset "AutGroup/AutGroupElem constructors" begin - f = Groups.AutSymbol("a", 1, :(a())) + f = Groups.AutSymbol("a", 1, Groups.FlipAut(1)) @test isa(AutGroupElem(f), Groups.GWord) @test isa(AutGroupElem(f), AutGroupElem) @test isa(AutGroup(FreeGroup(3)), Nemo.Group)