From 8cf4fb9adcad6370cd59f031bc716dfc2ad7d845 Mon Sep 17 00:00:00 2001 From: James Towle Date: Tue, 30 Jul 2019 09:51:46 -0700 Subject: [PATCH] Update contracts/utils/test/safe_math.ts Co-Authored-By: Lawrence Forman --- contracts/utils/test/safe_math.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/utils/test/safe_math.ts b/contracts/utils/test/safe_math.ts index b5ae65b737..e9159b6b01 100644 --- a/contracts/utils/test/safe_math.ts +++ b/contracts/utils/test/safe_math.ts @@ -134,7 +134,7 @@ describe('SafeMath', () => { expect(result).bignumber.to.be.eq(constants.ZERO_AMOUNT); }); - it('should return second argument if it is greater than the first', async () => { + it('should return second argument if it is less than the first', async () => { const result = await safeMath.externalMaxUint256.callAsync(toBN(13), constants.ZERO_AMOUNT); expect(result).bignumber.to.be.eq(toBN(13)); });