Skip to content

Commit

Permalink
Fix test descriptions per review
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Swid committed Aug 17, 2022
1 parent 33ede31 commit 1f0c7c6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/sdk/contractkit/src/wrappers/Accounts.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ testWithGanache('Accounts Wrapper', (web3) => {
await expect(accountsInstance.setWalletAddress(wallet)).rejects
})

test('DELEGATE fraction greater than 1 should fail', async () => {
test('SNBAT fraction greater than 1', async () => {
const account = accounts[0]
const beneficiary = accounts[1]
const fractionInvalid = valueToFixidityString(valueToBigNumber('2.5'))
Expand All @@ -186,7 +186,7 @@ testWithGanache('Accounts Wrapper', (web3) => {
)
})

test('DELEGATE beneficiary and fraction returned from get should equal set value', async () => {
test('SNBAT beneficiary and fraction', async () => {
const account = accounts[0]
const beneficiary = accounts[1]
const fractionValid = valueToFixidityString(valueToBigNumber('.25'))
Expand All @@ -201,7 +201,7 @@ testWithGanache('Accounts Wrapper', (web3) => {
expect(retval).toEqual(expectedRetval)
})

test('DELEGATE delete expected to clear beneficiary and fraction after setting values', async () => {
test('SNBAT delete expected to clear beneficiary and fraction', async () => {
const account = accounts[0]
const beneficiary = accounts[1]
const fractionValid = valueToFixidityString(valueToBigNumber('.25'))
Expand Down

0 comments on commit 1f0c7c6

Please sign in to comment.