We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b81166 commit 43a417cCopy full SHA for 43a417c
pytest-embedded-idf/pytest_embedded_idf/unity_tester.py
@@ -787,9 +787,9 @@ def get_merge_data(test_cases_attr: t.List[t.Dict]) -> t.Dict:
787
continue
788
789
if k not in output:
790
- output[k] = [f'[dut-{ind}]: {val}']
+ output[k] = [val]
791
else:
792
- output[k].append(f'[dut-{ind}]: {val}')
+ output[k].append(val)
793
794
for k, val in output.items():
795
if k in ('file', 'line'):
0 commit comments