Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit d2428b1

Browse files
restyled-commitsvatsalghelani-csa
authored andcommittedSep 10, 2024·
Restyled by isort
1 parent f6b3645 commit d2428b1

6 files changed

+11
-8
lines changed
 

‎src/python_testing/TC_CCTRL_2_1.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
#
1717

1818
import chip.clusters as Clusters
19-
from matter_testing_support.matter_testing import MatterBaseTest, TestStep, default_matter_test_main, has_cluster, run_if_endpoint_matches
19+
from matter_testing_support.matter_testing import (MatterBaseTest, TestStep, default_matter_test_main, has_cluster,
20+
run_if_endpoint_matches)
2021
from mobly import asserts
2122

2223

‎src/python_testing/TC_CC_2_2.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232

3333
import chip.clusters as Clusters
3434
from chip.clusters import ClusterObjects as ClusterObjects
35-
from matter_testing_support.matter_testing import (ClusterAttributeChangeAccumulator, MatterBaseTest, TestStep, default_matter_test_main,
36-
has_cluster, run_if_endpoint_matches)
35+
from matter_testing_support.matter_testing import (ClusterAttributeChangeAccumulator, MatterBaseTest, TestStep,
36+
default_matter_test_main, has_cluster, run_if_endpoint_matches)
3737
from mobly import asserts
3838
from test_plan_support import commission_if_required, read_attribute, verify_success
3939

‎src/python_testing/TC_EWATERHTR_2_2.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@
3232
import time
3333

3434
import chip.clusters as Clusters
35-
from matter_testing_support.matter_testing import EventChangeCallback, MatterBaseTest, TestStep, async_test_body, default_matter_test_main
35+
from matter_testing_support.matter_testing import (EventChangeCallback, MatterBaseTest, TestStep, async_test_body,
36+
default_matter_test_main)
3637
from mobly import asserts
3738
from TC_EWATERHTRBase import EWATERHTRBase
3839

‎src/python_testing/TC_EWATERHTR_2_3.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@
3030
import logging
3131

3232
import chip.clusters as Clusters
33-
from matter_testing_support.matter_testing import EventChangeCallback, MatterBaseTest, TestStep, async_test_body, default_matter_test_main
33+
from matter_testing_support.matter_testing import (EventChangeCallback, MatterBaseTest, TestStep, async_test_body,
34+
default_matter_test_main)
3435
from mobly import asserts
3536
from TC_EWATERHTRBase import EWATERHTRBase
3637

‎src/python_testing/TC_LVL_2_3.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232

3333
import chip.clusters as Clusters
3434
import test_plan_support
35-
from matter_testing_support.matter_testing import (ClusterAttributeChangeAccumulator, MatterBaseTest, TestStep, default_matter_test_main,
36-
has_cluster, run_if_endpoint_matches)
35+
from matter_testing_support.matter_testing import (ClusterAttributeChangeAccumulator, MatterBaseTest, TestStep,
36+
default_matter_test_main, has_cluster, run_if_endpoint_matches)
3737
from mobly import asserts
3838

3939

‎src/python_testing/TestSpecParsingSupport.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
import xml.etree.ElementTree as ElementTree
2020

2121
import chip.clusters as Clusters
22+
import jinja2
2223
from matter_testing_support.global_attribute_ids import GlobalAttributeIds
2324
from matter_testing_support.matter_testing import MatterBaseTest, ProblemNotice, default_matter_test_main
2425
from matter_testing_support.spec_parsing import (ClusterParser, PrebuiltDataModelDirectory, SpecParsingException, XmlCluster,
2526
add_cluster_data_from_xml, build_xml_clusters, check_clusters_for_unknown_commands,
2627
combine_derived_clusters_with_base)
27-
import jinja2
2828
from mobly import asserts
2929

3030
# TODO: improve the test coverage here

0 commit comments

Comments
 (0)
Please sign in to comment.