From 5367487e721c4e6cc426ecb465432d9e655bd22d Mon Sep 17 00:00:00 2001 From: Joaquin Gonzalez Date: Tue, 21 May 2024 09:59:44 -0300 Subject: [PATCH] style: update import statements to use curly braces --- test/AccountTest.sol | 2 +- test/SimplePlusAccount.t.sol | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/test/AccountTest.sol b/test/AccountTest.sol index 2b2e2e7..13b7869 100644 --- a/test/AccountTest.sol +++ b/test/AccountTest.sol @@ -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"; diff --git a/test/SimplePlusAccount.t.sol b/test/SimplePlusAccount.t.sol index c47b63c..c21c09c 100644 --- a/test/SimplePlusAccount.t.sol +++ b/test/SimplePlusAccount.t.sol @@ -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";