diff --git a/test/coeff.jl b/test/coeff.jl index ea5ad7d4a..8bef7f22f 100644 --- a/test/coeff.jl +++ b/test/coeff.jl @@ -56,7 +56,6 @@ e = x*y^2 + 2x + y^3*x^3 @test isequal(coeff(x * 5y / (1 + y + z) , x), 5y / (1 + y + z)) # issue #1041 - coefficient of cross term in multivariate polynomial - @test isequal(coeff(2*x*y + y, x*y), 2) @test isequal(coeff(2*x^2*y + y, x^2*y), 2) @test_throws AssertionError coeff(2*x*y + y, 2*x*y) # numerical factors not allowed in second argument of `coeff`