Skip to content

Commit 5c09a11

Browse files
committed
remove debug step
1 parent 842791d commit 5c09a11

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

src/python_testing/TC_DGETH_2_2.py

+1-9
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,8 @@
3535
# quiet: true
3636
# === END CI TEST ARGUMENTS ===
3737
#
38-
import logging
3938
import chip.clusters as Clusters
40-
41-
from chip.testing.matter_testing import MatterBaseTest, TestStep, async_test_body, default_matter_test_main, run_if_endpoint_matches, has_feature, has_cluster
42-
39+
from chip.testing.matter_testing import MatterBaseTest, TestStep, default_matter_test_main, has_cluster, run_if_endpoint_matches
4340
from mobly import asserts
4441

4542

@@ -85,7 +82,6 @@ def steps_TC_DGETH_2_2(self) -> list[TestStep]:
8582
@run_if_endpoint_matches(has_cluster(Clusters.Objects.EthernetNetworkDiagnostics))
8683
async def test_TC_DGETH_2_2(self):
8784
endpoint = self.get_endpoint()
88-
cluster = Clusters.Objects.EthernetNetworkDiagnostics
8985
attributes = Clusters.EthernetNetworkDiagnostics.Attributes
9086

9187
# Step 1: Commission DUT (already done)
@@ -109,10 +105,6 @@ async def test_TC_DGETH_2_2(self):
109105
self.step(step)
110106
if self.pics_guard(attr.attribute_id in attribute_list):
111107
initial_values[attr] = await self.read_dgeth_attribute_expect_success(endpoint, attr)
112-
# Print initial values for debugging
113-
self.step(8)
114-
for attr, value in initial_values.items():
115-
logging.info(f"Initial {attr.__name__}: {value}")
116108

117109
# Step 8: Send ResetCounts command
118110
self.step(8)

0 commit comments

Comments
 (0)