From 5003c75f5a244d50562e839fc294adeb1be33f5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCrg=C3=BCn=20Day=C4=B1o=C4=9Flu?= Date: Thu, 27 Jun 2024 14:19:35 +0300 Subject: [PATCH] use same --- test/util.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/util.test.js b/test/util.test.js index 4895165..66d515f 100644 --- a/test/util.test.js +++ b/test/util.test.js @@ -18,6 +18,6 @@ test('stringArrayToHexStripped', (t) => { t.plan(testCases.length) testCases.forEach(([input, expected]) => { - t.equal(stringArrayToHexStripped(input[0], input[1]), expected) + t.same(stringArrayToHexStripped(input[0], input[1]), expected) }) })