diff --git a/integration_tests/symbolics_01.py b/integration_tests/symbolics_01.py index 525cf6ab4c..3187a9005f 100644 --- a/integration_tests/symbolics_01.py +++ b/integration_tests/symbolics_01.py @@ -6,7 +6,10 @@ def main0(): y: S = Symbol('y') x = pi z: S = x + y + x = z + print(x) print(z) + assert(x == z) assert(z == pi + y) assert(z != S(2)*pi + y)