From 0972cd1fdc0f969c759d7c3c9487d17495c7fdf7 Mon Sep 17 00:00:00 2001 From: kalmar Date: Mon, 5 Jun 2017 11:14:24 +0200 Subject: [PATCH] tests: fix GroupRingElem printing --- test/runtests.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/runtests.jl b/test/runtests.jl index 966d2c1..d1f5768 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -77,7 +77,7 @@ using Nemo @test a[5] == 1 @test a[p] == 1 - @test string(a) == "1*[2, 3, 1]" + @test string(a) == " + 1*[2, 3, 1]" @test RG([0,0,0,0,1,0]) == a @@ -89,7 +89,7 @@ using Nemo @test a[1] == 2 @test a[s] == 2 - @test string(a) == "2*[1, 2, 3] + 1*[2, 3, 1]" + @test string(a) == " + 2*[1, 2, 3] + 1*[2, 3, 1]" @test length(a) == 2 end