Skip to content

Commit

Permalink
fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
n0rbed committed Mar 22, 2024
1 parent 20c09c9 commit 601c4e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/coeff.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit 601c4e0

Please sign in to comment.