Skip to content

Commit

Permalink
Merge branch 'master' into DanielVF/DeployFiles
Browse files Browse the repository at this point in the history
  • Loading branch information
shahthepro committed May 22, 2024
2 parents a699776 + ab55599 commit 8ee098a
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions tests/staking/Migrator.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -264,9 +264,9 @@ contract MigratorTest is Test {
// Should have removed OGV staked
for (uint256 i = 0; i < lockupIds.length; ++i) {
(amount, end, points) = ogvStaking.lockups(alice, lockupIds[i]);
assertEq(amount, 0, "Lockup still exists");
assertEq(end, 0, "Lockup still exists");
assertEq(points, 0, "Lockup still exists");
assertEq(amount, 0, "Amount: Lockup still exists");
assertEq(end, 0, "End: Lockup still exists");
assertEq(points, 0, "Points: Lockup still exists");
}

vm.stopPrank();
Expand Down Expand Up @@ -315,9 +315,9 @@ contract MigratorTest is Test {
// Should have removed OGV staked
for (uint256 i = 0; i < lockupIds.length; ++i) {
(amount, end, points) = ogvStaking.lockups(alice, lockupIds[i]);
assertEq(amount, 0, "Lockup still exists");
assertEq(end, 0, "Lockup still exists");
assertEq(points, 0, "Lockup still exists");
assertEq(amount, 0, "Amount: Lockup still exists");
assertEq(end, 0, "End: Lockup still exists");
assertEq(points, 0, "Points: Lockup still exists");
}

vm.stopPrank();
Expand Down Expand Up @@ -353,9 +353,9 @@ contract MigratorTest is Test {
// Should have removed OGV staked
for (uint256 i = 0; i < lockupIds.length; ++i) {
(amount, end, points) = ogvStaking.lockups(alice, lockupIds[i]);
assertEq(amount, 0, "Lockup still exists");
assertEq(end, 0, "Lockup still exists");
assertEq(points, 0, "Lockup still exists");
assertEq(amount, 0, "Amount: Lockup still exists");
assertEq(end, 0, "End: Lockup still exists");
assertEq(points, 0, "Points: Lockup still exists");
}

vm.stopPrank();
Expand Down Expand Up @@ -393,9 +393,9 @@ contract MigratorTest is Test {
// Should have removed OGV staked
for (uint256 i = 0; i < lockupIds.length; ++i) {
(amount, end, points) = ogvStaking.lockups(alice, lockupIds[i]);
assertEq(amount, 0, "Lockup still exists");
assertEq(end, 0, "Lockup still exists");
assertEq(points, 0, "Lockup still exists");
assertEq(amount, 0, "Amount: Lockup still exists");
assertEq(end, 0, "End: Lockup still exists");
assertEq(points, 0, "Points: Lockup still exists");
}

vm.stopPrank();
Expand Down

0 comments on commit 8ee098a

Please sign in to comment.