From 31ad7d17eb04add81276918f4019e78ee8ef3562 Mon Sep 17 00:00:00 2001 From: kalmar Date: Fri, 10 Feb 2017 16:00:49 +0100 Subject: [PATCH] Changes in test to accommodate change in AutSymbol --- test/runtests.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/runtests.jl b/test/runtests.jl index c82deae..ad5d7c4 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)), v -> v, v -> v) + f = AutSymbol("a", 1, :(a()), 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)), v -> v, v -> v) + f = AutSymbol("a", 1, :(a()), v -> v) @test isa(GWord(f), GWord) @test isa(GWord(f), AutWord) @test isa(AutWord(f), AutWord)