This commit is contained in:
Aniket-Engg
2019-01-02 13:01:34 +05:30
parent dca581a2d9
commit 656a0ae84b
10 changed files with 34 additions and 50 deletions

View File

@ -3,8 +3,8 @@ const MathMock = artifacts.require('MathMock');
const { BigNumber } = require('../helpers/setup');
contract('Math', function () {
const min = 1234;
const max = 5678;
const min = new BigNumber(1234);
const max = new BigNumber(5678);
beforeEach(async function () {
this.math = await MathMock.new();