Skip to content
Snippets Groups Projects
Commit 2032d5ae authored by Isuru Fernando's avatar Isuru Fernando
Browse files

Fix test that used sympy antipattern

calling a symbol which resulted in a Function was introduced
as a workaround for sympy internals and these were fixed in sympy 1.3
and calling a symbol was removed.
parent bd8a3b56
No related branches found
No related tags found
1 merge request!21Fix test that used sympy antipattern
......@@ -95,7 +95,7 @@ def test_sympy_interaction():
import sympy as sp
x, y = sp.symbols("x y")
f = sp.symbols("f")
f = sp.Function("f")
s1_expr = 1/f(x/sp.sqrt(x**2+y**2)).diff(x, 5)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment