Update tests/test_utils_get_adj.py
Run CI Tests / test (push) Successful in 51s

This commit is contained in:
2025-07-31 21:46:56 +02:00
parent d4410ab555
commit 856cf879e8
+2 -4
View File
@@ -7,11 +7,9 @@ from slic.utils.get_adj import *
@pytest.fixture(autouse=True)
def cleanup_adjustables():
instances(SubAdjustable).clear()
instances(Adjustable).clear()
instances(Adjustable, weak=True).clear()
yield
instances(SubAdjustable).clear()
instances(Adjustable).clear()
instances(Adjustable, weak=True).clear()
class SubAdjustable(Adjustable):
def __init__(self, *a, **kw):