Skip to content

Commit

Permalink
wip tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberhorsey committed May 8, 2023
1 parent 100658b commit fc15d8c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/protocol/test/genesis/GenerateGenesis.g.sol
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ contract TestGenerateGenesis is Test, AddressResolver {
checkDeployedCode("ProxiedSignalService");

// check proxies
checkDeployedCode("ProxiedTaikoL2");
checkDeployedCode("TaikoL1Proxy");
checkDeployedCode("TokenVaultProxy");
checkDeployedCode("EtherVaultProxy");
checkDeployedCode("BridgeProxy");
Expand Down Expand Up @@ -114,7 +114,7 @@ contract TestGenerateGenesis is Test, AddressResolver {
);
Bridge bridge = Bridge(bridgeAddress);

// assertEq(owner, bridge.owner());
assertEq(owner, bridge.owner());

vm.expectRevert(BridgeErrors.B_FORBIDDEN.selector);
bridge.processMessage(
Expand Down Expand Up @@ -143,7 +143,7 @@ contract TestGenerateGenesis is Test, AddressResolver {
);
EtherVault etherVault = EtherVault(etherVaultAddress);

// assertEq(owner, etherVault.owner());
assertEq(owner, etherVault.owner());

assertEq(
etherVault.isAuthorized(
Expand Down

0 comments on commit fc15d8c

Please sign in to comment.