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); });