@@ -61,9 +61,9 @@ describe('Token', () => {
6161 deployer : deployerWallet ,
6262 } ) ;
6363
64- const deployer = new ContractDeployer ( TokenContractArtifact , wallet , undefined , 'constructor_with_minter' ) ;
64+ const deployer = new ContractDeployer ( TokenContractArtifact , wallet , 'constructor_with_minter' ) ;
6565 const { contract } = await deployer
66- . deploy ( 'PrivateToken' , 'PT' , 18 , deployerWallet , AztecAddress . ZERO , { salt } )
66+ . deploy ( [ 'PrivateToken' , 'PT' , 18 , deployerWallet , AztecAddress . ZERO ] , { salt } )
6767 . send ( { from : deployerWallet } ) ;
6868
6969 const contractMetadata = await wallet . getContractMetadata ( deploymentData . address ) ;
@@ -89,7 +89,7 @@ describe('Token', () => {
8989 } ) ;
9090 const deployer = new ContractDeployer ( TokenContractArtifact , wallet , 'constructor_with_initial_supply' ) ;
9191 const { contract } = await deployer
92- . deploy ( 'PrivateToken' , 'PT' , 18 , 1 , deployerWallet , AztecAddress . ZERO , { salt } )
92+ . deploy ( [ 'PrivateToken' , 'PT' , 18 , 1 , deployerWallet , AztecAddress . ZERO ] , { salt } )
9393 . send ( { from : deployerWallet } ) ;
9494
9595 const contractMetadata = await wallet . getContractMetadata ( deploymentData . address ) ;
0 commit comments