Skip to content

Commit 67db64e

Browse files
committed
Restyled
1 parent 319fb68 commit 67db64e

File tree

3 files changed

+24
-14
lines changed

3 files changed

+24
-14
lines changed

src/app/tests/suites/certification/PICS.yaml

+8-3
Original file line numberDiff line numberDiff line change
@@ -9985,14 +9985,19 @@ PICS:
99859985

99869986
# Features
99879987

9988-
- label: "Does the associated endpoint provide or consume power for the entire node?"
9988+
- label:
9989+
"Does the associated endpoint provide or consume power for the entire
9990+
node?"
99899991
id: PWRTL.S.F00
99909992

99919993
- label:
9992-
"Does the associated endpoint provide or consume power for itself and its child endpoints?"
9994+
"Does the associated endpoint provide or consume power for itself and
9995+
its child endpoints?"
99939996
id: PWRTL.S.F01
99949997

9995-
- label: "Does the associated endpoint provide or consume power for a provided set of endpoints?"
9998+
- label:
9999+
"Does the associated endpoint provide or consume power for a provided
10000+
set of endpoints?"
999610001
id: PWRTL.S.F02
999710002

999810003
- label: "Can the provided set of endpoints change?"

src/app/tests/suites/certification/Test_TC_PWRTL_1_1.yaml

+14-10
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ tests:
4141
type: int16u
4242

4343
- label:
44-
"Step 3a: Given PWRTL.S.F00(Node) ensure featuremap has the
45-
correct bit set"
44+
"Step 3a: Given PWRTL.S.F00(Node) ensure featuremap has the correct
45+
bit set"
4646
PICS: PWRTL.S.F00
4747
command: "readAttribute"
4848
attribute: "FeatureMap"
@@ -53,8 +53,8 @@ tests:
5353
hasMasksClear: [0x2, 0x4, 0x8]
5454

5555
- label:
56-
"Step 3b: Given PWRTL.S.F01(Leaf) ensure featuremap has the
57-
correct bit set"
56+
"Step 3b: Given PWRTL.S.F01(Leaf) ensure featuremap has the correct
57+
bit set"
5858
PICS: PWRTL.S.F01
5959
command: "readAttribute"
6060
attribute: "FeatureMap"
@@ -65,8 +65,8 @@ tests:
6565
hasMasksClear: [0x1, 0x4, 0x8]
6666

6767
- label:
68-
"Step 3c: Given PWRTL.S.F02(Set) ensure featuremap has the
69-
correct bit set"
68+
"Step 3c: Given PWRTL.S.F02(Set) ensure featuremap has the correct bit
69+
set"
7070
PICS: PWRTL.S.F02
7171
command: "readAttribute"
7272
attribute: "FeatureMap"
@@ -77,8 +77,8 @@ tests:
7777
hasMasksClear: [0x1, 0x2]
7878

7979
- label:
80-
"Step 3d: Given PWRTL.S.F03(Dynamic Power Flow) ensure featuremap has the
81-
correct bit set"
80+
"Step 3d: Given PWRTL.S.F03(Dynamic Power Flow) ensure featuremap has
81+
the correct bit set"
8282
PICS: PWRTL.S.F03
8383
command: "readAttribute"
8484
attribute: "FeatureMap"
@@ -96,7 +96,9 @@ tests:
9696
type: list
9797
contains: []
9898

99-
- label: "Step 4b: TH reads feature dependent attribute(AvailableEndpoints) AttributeList from DUT"
99+
- label:
100+
"Step 4b: TH reads feature dependent attribute(AvailableEndpoints)
101+
AttributeList from DUT"
100102
PICS: "PICS_SF_SET && !PICS_SF_DYPF"
101103
command: "readAttribute"
102104
attribute: "AttributeList"
@@ -105,7 +107,9 @@ tests:
105107
type: list
106108
contains: [0]
107109

108-
- label: "Step 4c: TH reads feature dependent attribute(ActiveEndpoints) AttributeList from DUT"
110+
- label:
111+
"Step 4c: TH reads feature dependent attribute(ActiveEndpoints)
112+
AttributeList from DUT"
109113
PICS: "PICS_SF_SET && PICS_SF_DYPF"
110114
command: "readAttribute"
111115
attribute: "AttributeList"

src/python_testing/TC_PWRTL_2_1.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ async def test_TC_PWRTL_2_1(self):
6161
logging.info("ActiveEndpoints: %s" % (active_endpoints))
6262

6363
if available_endpoints == NullValue:
64-
asserts.assert_true(active_endpoints == NullValue, "ActiveEndpoints should be null when AvailableEndpoints is null: %s" % active_endpoints)
64+
asserts.assert_true(active_endpoints == NullValue,
65+
"ActiveEndpoints should be null when AvailableEndpoints is null: %s" % active_endpoints)
6566

6667

6768
if __name__ == "__main__":

0 commit comments

Comments
 (0)