Skip to content

Commit

Permalink
fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
0x3bfc committed Jul 19, 2020
1 parent 29e20f7 commit 82c23ff
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/unit/balancer/SPool.Test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* eslint-env mocha */
/* global artifacts, contract, it, web3, assert */
/* global artifacts, contract, it, web3 */
// This original test is from balancer-core repo
// https://github.com/balancer-labs/balancer-core/blob/e232d03eea1c66529f22d3157c7f560bf0782370/test/math_with_fees.js
const Decimal = require('decimal.js')
Expand Down Expand Up @@ -122,15 +122,15 @@ contract('SPool', async (accounts) => {

describe('BToken tests', () => {
it('should get name', async () => {
const poolName = await pool.name()
await pool.name()
})

it('should get symbole', async () => {
const poolSymbol = await pool.symbol()
await pool.symbol()
})

it('should get decimals', async () => {
const poolDecimals = await pool.decimals()
await pool.decimals()
})
})
describe('With fees', () => {
Expand Down

0 comments on commit 82c23ff

Please sign in to comment.