From 214b00d215adb41cfbde5f12ca9dd00305e592bf Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Fri, 10 Feb 2023 01:54:53 +0100 Subject: benchmark: add trailing commas in `benchmark/crypto` PR-URL: https://github.com/nodejs/node/pull/46553 Reviewed-By: Moshe Atlow Reviewed-By: Akhil Marsonya Reviewed-By: James M Snell Reviewed-By: Darshan Sen --- benchmark/crypto/cipher-stream.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'benchmark/crypto/cipher-stream.js') diff --git a/benchmark/crypto/cipher-stream.js b/benchmark/crypto/cipher-stream.js index 47a8931a54..4e794f7afd 100644 --- a/benchmark/crypto/cipher-stream.js +++ b/benchmark/crypto/cipher-stream.js @@ -6,9 +6,9 @@ const bench = common.createBenchmark(main, { cipher: ['AES192', 'AES256'], type: ['asc', 'utf', 'buf'], len: [2, 1024, 102400, 1024 * 1024], - api: ['legacy', 'stream'] + api: ['legacy', 'stream'], }, { - flags: ['--no-warnings'] + flags: ['--no-warnings'], }); function main({ api, cipher, type, len, writes }) { -- cgit v1.2.1