Browse Source

Remove bad SafeCast test

Francisco Giordano 4 years ago
parent
commit
47e37975c9
1 changed files with 0 additions and 7 deletions
  1. 0 7
      test/utils/SafeCast.test.js

+ 0 - 7
test/utils/SafeCast.test.js

@@ -73,13 +73,6 @@ contract('SafeCast', async (accounts) => {
         'SafeCast: value must be positive',
       );
     });
-
-    it(`reverts when casting UINT256_MAX (${maxUint256})`, async function () {
-      await expectRevert(
-        this.safeCast.toUint256(maxUint256),
-        'SafeCast: value must be positive',
-      );
-    });
   });
 
   function testToInt (bits) {