diff --git a/functions/src/__tests__/supply.test.ts b/functions/src/__tests__/supply.test.ts index 7d21b6f..a484a5a 100644 --- a/functions/src/__tests__/supply.test.ts +++ b/functions/src/__tests__/supply.test.ts @@ -11,7 +11,7 @@ describe("Supply Functions", () => { test("getTotalSupply should return total supply", async () => { const totalSupply = await getTotalSupply(); - expect(totalSupply).toBeLessThanOrEqual(MAX_SUPPLY); + expect(totalSupply).toBeLessThan(MAX_SUPPLY); }); test("getMaxSupply should return MAX_SUPPLY", async () => {