tests: fix GroupRingElem printing

This commit is contained in:
kalmar 2017-06-05 11:14:24 +02:00
parent a03420e6d3
commit 0972cd1fdc
1 changed files with 2 additions and 2 deletions

View File

@ -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