Skip to content

Commit

Permalink
XXX for test_single_normal() in test_continuous_rv.py
Browse files Browse the repository at this point in the history
  • Loading branch information
skirpichev committed Apr 10, 2017
1 parent 3d7083c commit 55cf5de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion diofant/integrals/risch.py
Original file line number Diff line number Diff line change
Expand Up @@ -716,7 +716,7 @@ def frac_in(f, t, **kwargs):
fa, fd = f
f = fa.as_expr()/fd.as_expr()
fa, fd = f.as_expr().as_numer_denom()
fa, fd = fa.as_poly(t, **kwargs), fd.as_poly(t, **kwargs)
fa, fd = fa.as_poly(t, extension=False, **kwargs), fd.as_poly(t, extension=False, **kwargs)
if cancel:
fa, fd = fa.cancel(fd, include=True)
if fa is None or fd is None:
Expand Down

0 comments on commit 55cf5de

Please sign in to comment.