This commit is contained in:
Jamie Hewitt 2022-07-04 13:05:34 +01:00
parent 0ce685c37f
commit 91bd6e08fd

View File

@ -80,7 +80,7 @@ describe('Simple Publish & consume test', async () => {
let accounts: string[] let accounts: string[]
let publisherAccount: string let publisherAccount: string
let newOwnerAccount: string let newOwnerAccount: string
let user1: string // let user1: string
let user2: string let user2: string
let user3: string let user3: string
@ -90,7 +90,7 @@ describe('Simple Publish & consume test', async () => {
accounts = await web3.eth.getAccounts() accounts = await web3.eth.getAccounts()
publisherAccount = accounts[0] publisherAccount = accounts[0]
newOwnerAccount = accounts[1].toLowerCase() newOwnerAccount = accounts[1].toLowerCase()
user1 = accounts[2] // user1 = accounts[2]
user2 = accounts[3] user2 = accounts[3]
user3 = accounts[4] user3 = accounts[4]
}) })