summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorcyan <cyjan@mrcyjanek.net>2025-09-10 16:51:39 +0000
committercyan <cyjan@mrcyjanek.net>2025-09-10 13:50:01 -0400
commit07f7a7f80735130ebfa5842ddee5139076408c0d (patch)
treed475a84f67cbd7ef28c5d9295421970bc236c0fd /tests
parente5039470fa4139a06a26de6e6423ae00cb083142 (diff)
fix: testsv0.18.4.0-RC7
Diffstat (limited to 'tests')
-rw-r--r--tests/download_deps.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/download_deps.ts b/tests/download_deps.ts
index 8871fa5..e869962 100644
--- a/tests/download_deps.ts
+++ b/tests/download_deps.ts
@@ -31,7 +31,7 @@ export function getFileInfo(
return fileInfo;
}
-async function sha256(buffer: Uint8Array): Promise<string> {
+async function sha256(buffer: Uint8Array<ArrayBuffer>): Promise<string> {
const hashed = new Uint8Array(await crypto.subtle.digest("SHA-256", buffer));
return Array.from(hashed).map((i) => i.toString(16).padStart(2, "0")).join("");
}
@@ -72,7 +72,7 @@ async function tryToDownloadFile(
async function validFileExists(filePath: string, fileInfo: FileInfo): Promise<boolean> {
const [mainFileName] = fileInfo.names;
- let fileBuffer: Uint8Array;
+ let fileBuffer: Uint8Array<ArrayBuffer>;
try {
fileBuffer = await Deno.readFile(filePath);
} catch {