File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1438,7 +1438,7 @@ describe("Test CCIP execution", function() {
1438
1438
this . timeout ( 60000 ) ;
1439
1439
const data = "0x1234" ;
1440
1440
const result = await contract . testGet ( data , { ccipReadEnabled : true } ) ;
1441
- verify ( ethers . constants . AddressZero , data , result ) ;
1441
+ verify ( address , data , result ) ;
1442
1442
} ) ;
1443
1443
1444
1444
it ( "testGet should fail with CCIP not explicitly enabled by overrides" , async function ( ) {
@@ -1534,14 +1534,14 @@ describe("Test CCIP execution", function() {
1534
1534
this . timeout ( 60000 ) ;
1535
1535
const data = "0x123456" ;
1536
1536
const result = await contract . testGetFallback ( data , { ccipReadEnabled : true } ) ;
1537
- verify ( ethers . constants . AddressZero , data , result ) ;
1537
+ verify ( address , data , result ) ;
1538
1538
} ) ;
1539
1539
1540
1540
it ( "testPost passes under normal operation" , async function ( ) {
1541
1541
this . timeout ( 60000 ) ;
1542
1542
const data = "0x1234" ;
1543
1543
const result = await contract . testPost ( data , { ccipReadEnabled : true } ) ;
1544
- verify ( ethers . constants . AddressZero , data , result ) ;
1544
+ verify ( address , data , result ) ;
1545
1545
} ) ;
1546
1546
1547
1547
} )
You can’t perform that action at this time.
0 commit comments