From e15862f2893f024e0872f0f1abcf275c4b436834 Mon Sep 17 00:00:00 2001 From: Francisco Giordano Date: Wed, 20 Jul 2022 10:52:34 -0300 Subject: [PATCH] Remove test for feature not in 4.7 --- test/utils/introspection/ERC165Checker.test.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/test/utils/introspection/ERC165Checker.test.js b/test/utils/introspection/ERC165Checker.test.js index a0908ecb2d9..5be7c71996c 100644 --- a/test/utils/introspection/ERC165Checker.test.js +++ b/test/utils/introspection/ERC165Checker.test.js @@ -72,11 +72,6 @@ contract('ERC165Checker', function (accounts) { expect(supported.length).to.equal(1); expect(supported[0]).to.equal(false); }); - - it('does not support mock interface via supportsERC165InterfaceUnchecked', async function () { - const supported = await this.mock.supportsERC165InterfaceUnchecked(this.target.address, DUMMY_ID); - expect(supported).to.equal(true); - }); }); context('ERC165 not supported', function () {