Skip to content

Commit bdc8c48

Browse files
Fix log issue missing arg
1 parent 29ce984 commit bdc8c48

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/gha/integration_testing/test_validation.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,8 @@ def summarize_test_results(tests, platform, summary_dir):
187187
summary.append("%s log tail:" % test.testapp_path)
188188
summary.append(results.summary)
189189
else:
190-
summary.append("%s has no log output (crashed, not found on FTL, etc)")
190+
summary.append(
191+
"%s lacks logs (crashed, not found, etc)" % test.testapp_path)
191192
if failures:
192193
summary.append("\n%d TESTAPPS FAILED:" % len(failures))
193194
for test, results in failures:

0 commit comments

Comments
 (0)