From 33ceb2320c6ebd987933aabb1b7095b9bb12902b Mon Sep 17 00:00:00 2001 From: Vittorio Minacori Date: Wed, 27 Sep 2023 10:12:37 +0200 Subject: [PATCH] Fix typo in tests (#4625) --- test/utils/introspection/SupportsInterface.behavior.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/utils/introspection/SupportsInterface.behavior.js b/test/utils/introspection/SupportsInterface.behavior.js index 49a30e75576..7ef2c533f86 100644 --- a/test/utils/introspection/SupportsInterface.behavior.js +++ b/test/utils/introspection/SupportsInterface.behavior.js @@ -114,7 +114,7 @@ function shouldSupportInterfaces(interfaces = []) { }); describe('when the interfaceId is not supported', function () { - it('uses less thank 30k', async function () { + it('uses less than 30k', async function () { expect(await this.contractUnderTest.supportsInterface.estimateGas(INVALID_ID)).to.be.lte(30000); });