We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f5eccf commit f3eda90Copy full SHA for f3eda90
symengine/tests/test_symbol.py
@@ -9,7 +9,6 @@ def test_symbol():
9
assert str(x) != "y"
10
assert repr(x) == str(x)
11
# Verify the successful use of slots.
12
- assert hasattr(x, "__slots__")
13
assert not hasattr(x, "__dict__")
14
assert not hasattr(x, "__weakref__")
15
@@ -165,6 +164,5 @@ def test_dummy():
165
164
assert Dummy() != Dummy()
166
assert Dummy('x') != Dummy('x')
167
168
- assert hasattr(xdummy1, "__slots__")
169
assert not hasattr(xdummy1, "__dict__")
170
assert not hasattr(xdummy1, "__weakref__")
0 commit comments