diff --git a/library/helpers/ip-matcher/performance.test.ts b/library/helpers/ip-matcher/performance.test.ts index 16922c1d..558b29b1 100644 --- a/library/helpers/ip-matcher/performance.test.ts +++ b/library/helpers/ip-matcher/performance.test.ts @@ -811,5 +811,5 @@ t.test("test performance in comparison to node:net.blocklist", async (t) => { const percentageDiff = ((blockListMs - ipMatcherMs) / ipMatcherMs) * 100; // Expect the IPMatcher to be faster than the BlockList - t.same(percentageDiff > 0, true); + t.same(percentageDiff > 25, true); });