@@ -23,7 +23,7 @@ contract IexecLayerZeroBridgeScriptTest is Test {
2323 bytes32 salt = keccak256 ("salt " );
2424
2525 IexecLayerZeroBridgeDeploy public deployer;
26- address private liquidityUnifier ;
26+ address private rlcLiquidityUnifier ;
2727 address private rlcCrosschainToken;
2828
2929 // Forks ID
@@ -39,7 +39,7 @@ contract IexecLayerZeroBridgeScriptTest is Test {
3939
4040 // Setup Ethereum Mainnet fork
4141 vm.selectFork (sepoliaFork);
42- liquidityUnifier = new RLCLiquidityUnifierDeployScript ().deploy (
42+ rlcLiquidityUnifier = new RLCLiquidityUnifierDeployScript ().deploy (
4343 params.rlcToken, admin, upgrader, params.createxFactory, keccak256 ("salt " )
4444 );
4545
@@ -48,11 +48,15 @@ contract IexecLayerZeroBridgeScriptTest is Test {
4848 rlcCrosschainToken = new RLCCrosschainTokenDeployScript ().deploy (
4949 "iEx.ec Network Token " , "RLC " , admin, admin, params.createxFactory, salt
5050 );
51+
52+ //Add label to make logs more readable
53+ vm.label (address (rlcCrosschainToken), "rlcCrosschainToken " );
54+ vm.label (address (rlcLiquidityUnifier), "rlcLiquidityUnifier " );
5155 }
5256
5357 function testFork_Deployment_WithApproval () public {
5458 vm.selectFork (sepoliaFork);
55- _test_Deployment (true , liquidityUnifier );
59+ _test_Deployment (true , rlcLiquidityUnifier );
5660 }
5761
5862 function testFork_Deployment_WithoutApproval () public {
@@ -73,6 +77,7 @@ contract IexecLayerZeroBridgeScriptTest is Test {
7377 salt
7478 )
7579 );
80+ vm.label (address (iexecLayerZeroBridge), "iexecLayerZeroBridge " );
7681
7782 assertEq (iexecLayerZeroBridge.owner (), admin);
7883 assertEq (iexecLayerZeroBridge.token (), requireApproval ? params.rlcToken : rlcCrosschainToken);
0 commit comments