From ca0fa1d3473901b61b5e3067260f8ed09359035c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Wed, 26 Feb 2025 12:00:54 -0500 Subject: [PATCH] test: update pwd test for bcrypt3.x --- test/password.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/password.js b/test/password.js index 4ad6d5a7e1..592d3a09af 100644 --- a/test/password.js +++ b/test/password.js @@ -9,7 +9,7 @@ describe('Password', () => { describe('.hash()', () => { it('should return a password hash when called', async () => { const hash = await password.hash(12, 'test'); - assert(hash.startsWith('$2a$')); + assert(hash.startsWith('$2b$')); }); });