diff --git a/src/Groups.jl b/src/Groups.jl index 97b7a41..3b4a7b3 100644 --- a/src/Groups.jl +++ b/src/Groups.jl @@ -28,7 +28,6 @@ one(s::GSymbol) = one(typeof(s)) change_pow(s::GSymbol, n::Int) = throw(ArgumentError("Define change_pow function for $(typeof(s))!")) - abstract Word type GWord{T<:GSymbol} <: Word diff --git a/src/free_groups.jl b/src/free_groups.jl index bc149f5..feb8a7b 100644 --- a/src/free_groups.jl +++ b/src/free_groups.jl @@ -1,4 +1,4 @@ -import Base:convert +import Base: convert export FGSymbol, FGWord diff --git a/test/runtests.jl b/test/runtests.jl index a35dbff..7ed2238 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -35,7 +35,7 @@ t = FGSymbol("t") end end -@testset "GWords" begin +@testset "FGWords" begin @testset "defines" begin @test isa(Groups.GWord(s), Groups.GWord) @test isa(Groups.GWord(s), FGWord)