You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
assertEq(factory.beacon().implementation(), address(newImplementation), "Beacon implementation should be updated");
85
+
assertEq(UpgradeableBeacon(factory.beaconProxyFactory().beacon()).implementation(), address(newImplementation), "Beacon implementation should be updated");
86
86
}
87
87
88
88
function test_nonOwnerCannotUpgradeBeacon() public {
assertEq(factory.beacon().implementation(), address(newImplementation), "Beacon should point to new implementation");
109
+
assertEq(UpgradeableBeacon(factory.beaconProxyFactory().beacon()).implementation(), address(newImplementation), "Beacon should point to new implementation");
0 commit comments