Skip to content

Commit

Permalink
change test
Browse files Browse the repository at this point in the history
  • Loading branch information
Mohitbalwani26 committed Aug 2, 2021
1 parent fdb3469 commit b6052f2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sympy/solvers/ode/tests/test_single.py
Original file line number Diff line number Diff line change
Expand Up @@ -1357,7 +1357,8 @@ def _get_examples_ode_sol_nth_order_reducible():
# Needs to be a way to know how to combine derivatives in the expression
'reducible_12': {
'eq': Derivative(x*f(x), x, x, x) + Derivative(f(x), x, x, x),
'sol': [Eq(f(x), C1 + C2*x + C3/Mul(2, (x + 1), evaluate=False))], # 2-arg Mul!
'sol': [Eq(f(x), C1 + C3/Mul(2, (x**2 + 2*x + 1), evaluate=False) +
x*(C2 + C3/Mul(2, (x**2 + 2*x + 1), evaluate=False)))], # 2-arg Mul!
'slow': True,
},
}
Expand Down

0 comments on commit b6052f2

Please sign in to comment.