Skip to content

Commit b194ca5

Browse files
authored
update DA-1.4/1.8 helpter script (#33935)
I added the PID to the test_vector, so we should pull it from there. There's a new fallback that uses a different PID.
1 parent 3b4371e commit b194ca5

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

credentials/development/gen_commissioner_dut_test_plan_table.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,7 @@ def main():
8686
with open(path, 'r') as f:
8787
j = json.loads(f.read())
8888
success_expected = j['is_success_case'].lower() == 'true'
89-
pid = 177 if 'fallback_encoding' in p else 32768
90-
desc = TestInfo(desc=j['description'], dir=p, pid=pid)
89+
desc = TestInfo(desc=j['description'], dir=p, pid=int(j['basic_info_pid']))
9190
if success_expected:
9291
success_cases.append(desc)
9392
else:

0 commit comments

Comments
 (0)