Skip to content

Commit

Permalink
fix: typo in unit test description
Browse files Browse the repository at this point in the history
  • Loading branch information
jmealy committed Sep 20, 2024
1 parent c6cfc89 commit 42ce098
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ describe('multiChainSafe', () => {
})

describe('getDeviatingSetups', () => {
it('should return empty array if not setup data is provided', () => {
it('should return empty array if no setup data is provided', () => {
expect(getDeviatingSetups([], '1')).toEqual([])
})

Expand All @@ -127,7 +127,6 @@ describe('multiChainSafe', () => {
it('should return empty array if all setups are the same', () => {
const owner1 = faker.finance.ethereumAddress()
const owner2 = faker.finance.ethereumAddress()
// const owner3 = faker.finance.ethereumAddress()

const safeSetups = [
{
Expand Down Expand Up @@ -331,7 +330,6 @@ describe('multiChainSafe', () => {
it('should return the setup data if undeployed safes have setup data available', () => {
const address = faker.finance.ethereumAddress()

// const owners = [{ value: faker.finance.ethereumAddress() }, { value: faker.finance.ethereumAddress() }]
const ownerAddress1 = faker.finance.ethereumAddress()
const ownerAddress2 = faker.finance.ethereumAddress()

Expand Down Expand Up @@ -390,7 +388,6 @@ describe('multiChainSafe', () => {
it('should only return setup data where if setup data is available', () => {
const address = faker.finance.ethereumAddress()

// const owners = [{ value: faker.finance.ethereumAddress() }, { value: faker.finance.ethereumAddress() }]
const ownerAddress1 = faker.finance.ethereumAddress()
const ownerAddress2 = faker.finance.ethereumAddress()

Expand Down Expand Up @@ -452,7 +449,6 @@ describe('multiChainSafe', () => {
it('should return setup data for a mix of deployed and undeployed safes', () => {
const address = faker.finance.ethereumAddress()

// const owners = [{ value: faker.finance.ethereumAddress() }, { value: faker.finance.ethereumAddress() }]
const ownerAddress1 = faker.finance.ethereumAddress()
const ownerAddress2 = faker.finance.ethereumAddress()

Expand Down

0 comments on commit 42ce098

Please sign in to comment.