File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
contracts/test/arbitration Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ describe("DisputeKitClassic", function () {
18
18
} ) ;
19
19
20
20
it ( "Should create a dispute" , async function ( ) {
21
- await expect ( disputeKit . connect ( deployer ) . createDispute ( 0 , 0 , "0x00" ) ) . to . be . revertedWith (
21
+ await expect ( disputeKit . connect ( deployer ) . createDispute ( 0 , 0 , 3 , "0x00" ) ) . to . be . revertedWith (
22
22
"Access not allowed: KlerosCore only."
23
23
) ;
24
24
@@ -61,11 +61,9 @@ async function deployContracts(deployer) {
61
61
ethers . constants . AddressZero , // should be an ERC20
62
62
ethers . constants . AddressZero , // should be a Juror Prosecution module
63
63
disputeKit . address ,
64
+ [ 120 , 120 ] , // minStakingTime, maxFreezingTime
64
65
false ,
65
- 200 ,
66
- 10000 ,
67
- 100 ,
68
- 3 ,
66
+ [ 200 , 10000 , 100 , 3 ] ,
69
67
[ 0 , 0 , 0 , 0 ] ,
70
68
3
71
69
) ;
You can’t perform that action at this time.
0 commit comments