From db048a09baef8ba92a9f94a8a9f89fb0558913fa Mon Sep 17 00:00:00 2001 From: Mao Zeng Date: Mon, 26 Aug 2024 13:10:32 +0100 Subject: [PATCH] Delete blank line in test/coeff.jl. --- test/coeff.jl | 1 - 1 file changed, 1 deletion(-) 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`