From 7fc778d251dd682d124c77387147bd4e0d4cf8f1 Mon Sep 17 00:00:00 2001 From: Alexander Bayandin Date: Wed, 10 May 2023 11:53:02 +0100 Subject: [PATCH] GitHub Autocomment: fix flaky test notifications --- scripts/pr-comment-test-report.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/pr-comment-test-report.js b/scripts/pr-comment-test-report.js index 21386d3898..134df432ae 100644 --- a/scripts/pr-comment-test-report.js +++ b/scripts/pr-comment-test-report.js @@ -69,7 +69,7 @@ module.exports = async ({ github, context, fetch, reports }) => { if (test.retriesCount > 0) { retriedTests.push(test); - if (test.retriedStatusChangedTests) { + if (test.retriesStatusChange) { retriedStatusChangedTests.push(test); } }