From d1fe9177c592ed2e04f00d81df0bb99bf009258f Mon Sep 17 00:00:00 2001 From: Marco Munizaga Date: Tue, 28 Feb 2023 21:04:26 -0800 Subject: [PATCH] fix --- test/perf/index.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/perf/index.spec.ts b/test/perf/index.spec.ts index 7d1aaaa40f..0057c77023 100644 --- a/test/perf/index.spec.ts +++ b/test/perf/index.spec.ts @@ -84,10 +84,10 @@ describe('perf', () => { // Run Perf const downloadBandwidth = await client.measureDownloadBandwidth(remoteComponents.peerId, 10n << 20n) // eslint-disable-next-line no-console - console.log('Download bandwidth: ', downloadBandwidth >> 10, ' kiB/s') + console.log('Download bandwidth: ', downloadBandwidth >> 10n, ' kiB/s') const uploadBandwidth = await client.measureDownloadBandwidth(remoteComponents.peerId, 10n << 20n) // eslint-disable-next-line no-console - console.log('Upload bandwidth: ', uploadBandwidth >> 10, ' kiB/s') + console.log('Upload bandwidth: ', uploadBandwidth >> 10n, ' kiB/s') }) })