Skip to content

Commit

Permalink
fix more capitaliaztion
Browse files Browse the repository at this point in the history
  • Loading branch information
Foivos committed Jun 27, 2024
1 parent c45a2de commit ad272af
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/axelar/AxelarTransceiverEndToEnd.sol
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ contract AxelarTransceiverEndToEnd is Test {
IAxelarGateway gateway;
IAxelarGasService gasService;
NttManager sourceNttmanager;
wstETHL2Token sourceToken;
WstEthL2Token sourceToken;
uint16 sourceChainId;

AxelarTransceiver recipientTransceiver;
NttManager recipientNttManager;
wstETHL2Token recipientToken;
WstEthL2Token recipientToken;
uint16 recipientChainId;

function setUp() public {
Expand All @@ -42,7 +42,7 @@ contract AxelarTransceiverEndToEnd is Test {

// Setup Source Infrastructure
sourceChainId = 1;
sourceToken = new wstETHL2Token("Wrapped StEth Source", "wStEthSrc", OWNER, OWNER);
sourceToken = new WstEthL2Token();
address sourceManagerImplementation = address(
new NttManager(
address(sourceToken),
Expand All @@ -66,7 +66,7 @@ contract AxelarTransceiverEndToEnd is Test {

// Setup Recipient Infrastructure
recipientChainId = 2;
recipientToken = new wstETHL2Token("Wrapped StEth Recipient", "wStEthRcpt", OWNER, OWNER);
recipientToken = new WstEthL2Token();
address recipientManagerImplementation = address(
new NttManager(
address(recipientToken),
Expand Down

0 comments on commit ad272af

Please sign in to comment.