Skip to content

Commit fad076f

Browse files
Krishang NadgaudaKrishang Nadgauda
authored andcommitted
correct test names
1 parent 4b30446 commit fad076f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/test/Multiwrap.t.sol

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ contract MultiwrapTest is BaseTest {
348348
assertEq(contentsOfWrappedToken.length, 0);
349349
}
350350

351-
function test_event_wrap_TokensUnwrapped() public {
351+
function test_event_unwrap_TokensUnwrapped() public {
352352

353353
// ===== setup: wrap tokens =====
354354
uint256 expectedIdForWrappedToken = multiwrap.nextTokenIdToMint();
@@ -404,7 +404,7 @@ contract MultiwrapTest is BaseTest {
404404
assertEq(erc1155.balanceOf(address(multiwrap), 0), 0);
405405
}
406406

407-
function test_revert_wrap_invalidTokenId() public {
407+
function test_revert_unwrap_invalidTokenId() public {
408408

409409
// ===== setup: wrap tokens =====
410410
uint256 expectedIdForWrappedToken = multiwrap.nextTokenIdToMint();
@@ -420,7 +420,7 @@ contract MultiwrapTest is BaseTest {
420420
multiwrap.unwrap(expectedIdForWrappedToken + 1, recipient);
421421
}
422422

423-
function test_revert_wrap_unapprovedCaller() public {
423+
function test_revert_unwrap_unapprovedCaller() public {
424424

425425
// ===== setup: wrap tokens =====
426426
uint256 expectedIdForWrappedToken = multiwrap.nextTokenIdToMint();
@@ -436,7 +436,7 @@ contract MultiwrapTest is BaseTest {
436436
multiwrap.unwrap(expectedIdForWrappedToken, recipient);
437437
}
438438

439-
function test_revert_wrap_notOwner() public {
439+
function test_revert_unwrap_notOwner() public {
440440

441441
// ===== setup: wrap tokens =====
442442
uint256 expectedIdForWrappedToken = multiwrap.nextTokenIdToMint();
@@ -455,7 +455,7 @@ contract MultiwrapTest is BaseTest {
455455
multiwrap.unwrap(expectedIdForWrappedToken, recipient);
456456
}
457457

458-
function test_revert_wrap_access_UNWRAP_ROLE() public {
458+
function test_revert_unwrap_access_UNWRAP_ROLE() public {
459459
// ===== setup: wrap tokens =====
460460
uint256 expectedIdForWrappedToken = multiwrap.nextTokenIdToMint();
461461
address recipient = address(0x123);

0 commit comments

Comments
 (0)