From a4dc564982ffcf22f451417d59cec14aea4ae7b9 Mon Sep 17 00:00:00 2001 From: Bret Comnes Date: Sat, 30 Sep 2023 14:16:14 -0700 Subject: [PATCH] Update filesize --- lib/download-yt-dlp.test.js | 1 - test.js | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/download-yt-dlp.test.js b/lib/download-yt-dlp.test.js index 2124213..cb9628e 100644 --- a/lib/download-yt-dlp.test.js +++ b/lib/download-yt-dlp.test.js @@ -17,7 +17,6 @@ tap.test('download yt-dlp', async t => { filepath, octokitOpts }) - console.log({ results }) t.ok(await stat(results.binPath)) } finally { await cleanup() diff --git a/test.js b/test.js index 7b241fb..5dbc529 100644 --- a/test.js +++ b/test.js @@ -9,7 +9,7 @@ import { downloadFromGithub, BcDLP } from './index.js' const testVideoId = 'C0DPdy98e4c' const testVideoURL = 'https://www.youtube.com/watch?v=' + testVideoId -const expectedVideoSize = 169043 +const expectedVideoSize = 173296 const token = process?.env?.GITHUB_TOKEN