Skip to content

Commit db80bd2

Browse files
[payment-method-manifest] Remove dynamic test ID from failure message (#62083)
This was causing flake in Chrome test infra, since the failure message would change on each run.
1 parent b6b2d09 commit db80bd2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

payment-method-manifest/resources/helpers.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ async function waitForServerAccessLogs(t, testId, requiredCount = 2, timeout = 3
3535
const resp = await fetch(queryUrl);
3636
if (!resp.ok) {
3737
throw new Error(
38-
`stash-query.py failed with HTTP status ${resp.status} for test ID '${testId}'`
38+
`stash-query.py failed with HTTP status ${resp.status}`
3939
);
4040
}
4141
lastLogs = await resp.json();
4242
return lastLogs && lastLogs.length >= requiredCount;
4343
},
44-
`Waiting for ${requiredCount} server access logs for test ID '${testId}'`,
44+
`Waiting for ${requiredCount} server access logs`,
4545
timeout,
4646
interval
4747
);

0 commit comments

Comments
 (0)