Skip to content

Commit

Permalink
style: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
adamegyed committed Dec 13, 2024
1 parent d02704a commit fa10db5
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions test/script/DeployAccounts.s.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ import {Create2} from "@openzeppelin/contracts/utils/Create2.sol";

import {DeployAccountsScript} from "../../script/DeployAccounts.s.sol";
import {ModularAccount} from "../../src/account/ModularAccount.sol";
import {SemiModularAccountBytecode} from "../../src/account/SemiModularAccountBytecode.sol";

import {SemiModularAccount7702} from "../../src/account/SemiModularAccount7702.sol";
import {SemiModularAccountBytecode} from "../../src/account/SemiModularAccountBytecode.sol";

contract DeployAccountsTest is Test {
DeployAccountsScript internal _deployAccountsScript;
Expand Down Expand Up @@ -50,8 +51,7 @@ contract DeployAccountsTest is Test {
zeroSalt,
keccak256(
bytes.concat(
type(SemiModularAccount7702).creationCode,
abi.encode(entryPoint, executionInstallDelegate)
type(SemiModularAccount7702).creationCode, abi.encode(entryPoint, executionInstallDelegate)
)
),
CREATE2_FACTORY
Expand Down Expand Up @@ -85,9 +85,6 @@ contract DeployAccountsTest is Test {
"alchemy.sma-bytecode.1.0.0"
);

assertEq(
SemiModularAccount7702(payable(semiModularAccount7702Impl)).accountId(),
"alchemy.sma-7702.1.0.0"
);
assertEq(SemiModularAccount7702(payable(semiModularAccount7702Impl)).accountId(), "alchemy.sma-7702.1.0.0");
}
}

0 comments on commit fa10db5

Please sign in to comment.