Skip to content

Commit

Permalink
fix: use proper seed value for hasher test
Browse files Browse the repository at this point in the history
  • Loading branch information
cmgriffing committed Feb 27, 2024
1 parent 0eb5887 commit 2b43942
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clients/js/src/test_gradual.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ console.log("WORKING SEED", hashString(uuid, workingSeed));
assert.ok(hashString(uuid, workingSeed) <= 0.4);

console.log("NON WORKING SEED", hashString(uuid, nonWorkingSeed));
assert.ok(hashString(uuid, workingSeed) > 0.4);
assert.ok(hashString(uuid, nonWorkingSeed) > 0.4);

0 comments on commit 2b43942

Please sign in to comment.