fix tests

This commit is contained in:
Asier Isayas
2025-05-09 13:55:38 -04:00
parent 8285872b6b
commit 33af49a93b
3 changed files with 48 additions and 1 deletions

View File

@@ -93,7 +93,7 @@ export const queryPagesUntilContentPresent = async (
if (results.hasMoreResults && userContext.apiType === "SQL" && ruThresholdEnabled()) {
const ruThreshold: number = getRUThreshold();
if (netRequestCharge > ruThreshold) {
logConsoleError(`Request discontinued after exceeding the Request Unit threshold of ${ruThreshold}.`);
logConsoleError(`Request discontinued after exceeding the Request Unit threshold of ${ruThreshold} RUs.`);
return results;
}
}