Skip to content

Commit

Permalink
style: update import statements to use curly braces
Browse files Browse the repository at this point in the history
  • Loading branch information
jpgonzalezra committed May 21, 2024
1 parent 9107c4a commit 5367487
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/AccountTest.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.25;

import "forge-std/src/Test.sol";
import { Test } from "forge-std/src/Test.sol";

import { PackedUserOperation } from "@account-abstraction/contracts/interfaces/PackedUserOperation.sol";
import { EntryPoint } from "@account-abstraction/contracts/core/EntryPoint.sol";
Expand Down
3 changes: 1 addition & 2 deletions test/SimplePlusAccount.t.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.23;
pragma solidity ^0.8.25;

import "forge-std/src/Test.sol";
import { PackedUserOperation } from "@account-abstraction/contracts/interfaces/PackedUserOperation.sol";
import { SimplePlusAccount } from "../src/SimplePlusAccount.sol";
import { SimplePlusAccountFactory } from "../src/SimplePlusAccountFactory.sol";
Expand Down

0 comments on commit 5367487

Please sign in to comment.