From c9f328ef66251db7fac7c704dd6c5523fc53b0ab Mon Sep 17 00:00:00 2001 From: taek Date: Wed, 26 Jun 2019 00:46:38 +0900 Subject: [PATCH] Fix Typo (#1808) --- test/math/SafeMath.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/math/SafeMath.test.js b/test/math/SafeMath.test.js index 194b10096..74e9a170f 100644 --- a/test/math/SafeMath.test.js +++ b/test/math/SafeMath.test.js @@ -97,7 +97,7 @@ contract('SafeMath', function () { expect(await this.safeMath.div(a, b)).to.be.bignumber.equal('1'); }); - it('reverts on divison by zero', async function () { + it('reverts on division by zero', async function () { const a = new BN('5678'); const b = new BN('0');