Skip to content

Commit 7665ff6

Browse files
update loop test
1 parent 8007f17 commit 7665ff6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/python_testing/matter_testing_infrastructure/chip/testing/matter_testing.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ class AttributeChangeCallbackFan: # COPY of AttributeChangeCallback to fiddle wi
348348
def __init__(self, expected_attribute: ClusterObjects.ClusterAttributeDescriptor):
349349
self._output: queue.Queue = queue.Queue()
350350
self._expected_attribute = expected_attribute
351-
print(f"\n\n\n\t\t [FANS] AttributeChangeCallbackFan __init__ queue: {self._output.queue}")
351+
# print(f"\n\n\n\t\t [FANS] AttributeChangeCallbackFan __init__ queue: {self._output.queue}")
352352

353353
def __call__(self, path: TypedAttributePath, transaction: SubscriptionTransaction):
354354
"""This is the subscription callback when an attribute is updated.
@@ -363,7 +363,7 @@ def __call__(self, path: TypedAttributePath, transaction: SubscriptionTransactio
363363
print(f"\n\n\n\t\t [FANS] AttributeChangeCallbackFan __call__ queue: {self._output.queue}")
364364

365365
def wait_for_report(self):
366-
print(f"\n\n\n\t\t [FANS] AttributeChangeCallbackFan wait_for_report START")
366+
print(f"\n\n\n\t\t [FANS] AttributeChangeCallbackFan wait_for_report")
367367

368368
try:
369369
path, transaction = self._output.get(block=True, timeout=10)

0 commit comments

Comments
 (0)