From 7820dc92110a651446856763a5aeb7b31d9f37c5 Mon Sep 17 00:00:00 2001 From: testudor Date: Mon, 21 Jul 2025 20:53:50 +0200 Subject: [PATCH] Fix incorrect unit test --- test/index.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/index.test.ts b/test/index.test.ts index 9d6350e..75d9db9 100644 --- a/test/index.test.ts +++ b/test/index.test.ts @@ -81,7 +81,7 @@ describe('getSubsetHash', () => { it('should return the same hash for different permutations of the same characters', () => { const hash1 = getSubsetHash('abc123'); - const hash2 = getSubsetHash('abc123'); + const hash2 = getSubsetHash('321cba'); expect(hash1).toBe(hash2); });