From 11224e1408edc3603d4a6462e87730284dad9dab Mon Sep 17 00:00:00 2001 From: kalmarek Date: Wed, 2 Jan 2019 16:14:32 +0100 Subject: [PATCH] in AbstractAlgebra-^0.3 Rings are not Groups --- Project.toml | 2 +- test/runtests.jl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Project.toml b/Project.toml index 5b14bd2..00eb2b2 100644 --- a/Project.toml +++ b/Project.toml @@ -17,4 +17,4 @@ Groups = "5d8bd718-bd84-11e8-3b40-ad14f4a32557" test = ["Test", "Groups"] [compat] -AbstractAlgebra = "^0.2.0" +AbstractAlgebra = "^0.3.0" diff --git a/test/runtests.jl b/test/runtests.jl index bd0878c..bc150ed 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -153,7 +153,7 @@ using SparseArrays @test isa(b//4, GroupRingElem) @test eltype(b//4) == Rational{Int} - @test isa(b//big(4), GroupElem) + @test isa(b//big(4), RingElem) @test eltype(b//(big(4)//1)) == Rational{BigInt} @test isa(a//1, GroupRingElem)