From fb77ad354933bb1008247140e5d879e77741e6a5 Mon Sep 17 00:00:00 2001 From: Paul Razvan Berg Date: Sat, 7 Jan 2023 11:50:02 +0200 Subject: [PATCH] chore: reorder imports --- test/Foo.t.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Foo.t.sol b/test/Foo.t.sol index 5051f24..127a576 100644 --- a/test/Foo.t.sol +++ b/test/Foo.t.sol @@ -1,8 +1,8 @@ // SPDX-License-Identifier: UNLICENSED pragma solidity >=0.8.4; -import { console2 } from "forge-std/console2.sol"; import { PRBTest } from "@prb/test/PRBTest.sol"; +import { console2 } from "forge-std/console2.sol"; import { StdCheats } from "forge-std/StdCheats.sol"; /// @dev See the "Writing Tests" section in the Foundry Book if this is your first time with Forge.