From 601c4e0c26f5408e35475d421ee9ec507c289f4a Mon Sep 17 00:00:00 2001 From: n0rbed Date: Fri, 22 Mar 2024 15:25:57 +0200 Subject: [PATCH] fixed tests --- test/coeff.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/coeff.jl b/test/coeff.jl index f23047a37..1bb74854d 100644 --- a/test/coeff.jl +++ b/test/coeff.jl @@ -43,5 +43,5 @@ e = x*y^2 + 2x + y^3*x^3 # issue #1098 @test isequal(coeff(x^2 + 1, x^0), 1) -@test isequal(coeff(e, x^0), 4) -@test isequal(coeff(a, x^0), a) +@test isequal(coeff(e, x^0), 0) +@test isequal(coeff(a*x + 3, x^0), 3)