difftreelog
Style fixed
in: master
2 files changed
tests/src/creditFeesToTreasury.test.tsdiffbeforeafterboth175 const expectedTransferFee = 0.1;175 const expectedTransferFee = 0.1;176 const toleranceMaxBound = 0.0012;176 const toleranceMaxBound = 0.0012;177 const toleranceMinBound = -0.0012;177 const toleranceMinBound = -0.0012;178 let fact = Number(fee) / 1e15 - expectedTransferFee;178 const fact = Number(fee) / 1e15 - expectedTransferFee;179 expect(fact).to.be.lessThan(toleranceMaxBound);179 expect(fact).to.be.lessThan(toleranceMaxBound);180 expect(fact).to.be.greaterThan(toleranceMinBound);180 expect(fact).to.be.greaterThan(toleranceMinBound);181 });181 });tests/src/util/helpers.tsdiffbeforeafterbothno syntactic changes