Skip to content

Commit

Permalink
Add regression test
Browse files Browse the repository at this point in the history
  • Loading branch information
skirpichev committed Mar 28, 2021
1 parent 80c5b28 commit fe548b4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions diofant/tests/solvers/test_solvers.py
Expand Up @@ -1677,3 +1677,7 @@ def test_unrad2():

def test_sympyissue_20610():
assert solve([x + y, sqrt(2)], [x, y]) == []


def test_sympyissue_21167():
assert solve(cbrt(x - 1) + cbrt(x) + cbrt(x + 1)) == []
1 change: 1 addition & 0 deletions docs/release/notes-0.13.rst
Expand Up @@ -61,3 +61,4 @@ These Sympy issues also were addressed:
* :sympyissue:`21107`: S.Infinity.is_nonzero returns False
* :sympyissue:`21132`: Integral with parametres: wrong and too long result
* :sympyissue:`21180`: Bug: sympy.factor doesn't work for Poly !!!
* :sympyissue:`21167`: Empty list of solutions returned for equation with cubic roots

0 comments on commit fe548b4

Please sign in to comment.