Skip to content

Commit f3eda90

Browse files
authored
Update test_symbol.py
1 parent 1f5eccf commit f3eda90

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

symengine/tests/test_symbol.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ def test_symbol():
99
assert str(x) != "y"
1010
assert repr(x) == str(x)
1111
# Verify the successful use of slots.
12-
assert hasattr(x, "__slots__")
1312
assert not hasattr(x, "__dict__")
1413
assert not hasattr(x, "__weakref__")
1514

@@ -165,6 +164,5 @@ def test_dummy():
165164
assert Dummy() != Dummy()
166165
assert Dummy('x') != Dummy('x')
167166
# Verify the successful use of slots.
168-
assert hasattr(xdummy1, "__slots__")
169167
assert not hasattr(xdummy1, "__dict__")
170168
assert not hasattr(xdummy1, "__weakref__")

0 commit comments

Comments
 (0)