Skip to content

Commit

Permalink
Update test_GetPreviousOwnerInLinkedList_SucceedsWithMultipleAccounts.
Browse files Browse the repository at this point in the history
  • Loading branch information
wshino committed Jun 22, 2024
1 parent cf01dc7 commit 122e194
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ contract SafeRecoverySubjectHandler_getPreviousOwnerInLinkedList_Test is SafeUni
function test_GetPreviousOwnerInLinkedList_SucceedsWithMultipleAccounts() public {
address expectedPreviousOwner = address(1);
address previousOwner =
safeRecoverySubjectHandler.exposed_getPreviousOwnerInLinkedList(accountAddress, owner);
safeRecoverySubjectHandler.exposed_getPreviousOwnerInLinkedList(accountAddress1, owner1);

assertEq(expectedPreviousOwner, previousOwner);
previousOwner =
safeRecoverySubjectHandler.exposed_getPreviousOwnerInLinkedList(accountAddress, anotherOwner);
safeRecoverySubjectHandler.exposed_getPreviousOwnerInLinkedList(accountAddress1, owner2);
assertEq(expectedPreviousOwner, previousOwner);
}
}

0 comments on commit 122e194

Please sign in to comment.