From 9755b9365c19d249a1434897d10140665742106e Mon Sep 17 00:00:00 2001 From: kalmar Date: Fri, 27 Jan 2017 13:04:52 +0100 Subject: [PATCH] fix basic tests for construction of automorphisms --- test/runtests.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/runtests.jl b/test/runtests.jl index 54a4dcc..8573a5b 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -113,7 +113,7 @@ end @testset "AutSymbol" begin @test_throws MethodError AutSymbol("a") @test_throws MethodError AutSymbol("a", 1) - f = AutSymbol("a", 1, :(a(0))) + f = AutSymbol("a", 1, :(a(0)), v -> v, v -> v) @test isa(f, GSymbol) @test isa(f, AutSymbol) @test isa(symmetric_AutSymbol([1,2,3,4]), AutSymbol) @@ -123,7 +123,7 @@ end end @testset "AutWords" begin - f = AutSymbol("a", 1, :(a(0))) + f = AutSymbol("a", 1, :(a(0)), v -> v, v -> v) @test isa(GWord(f), GWord) @test isa(GWord(f), AutWord) @test isa(AutWord(f), AutWord)