Skip to content

Commit

Permalink
fix: remove Test inheritance from ConfigParser
Browse files Browse the repository at this point in the history
  • Loading branch information
nadir-akhtar committed Oct 28, 2024
1 parent eeaf189 commit 53ffb0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/ConfigParser.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
pragma solidity ^0.8.12;

import "forge-std/Script.sol";
import "forge-std/Test.sol";
import "forge-std/StdAssertions.sol";

import "./StringUtils.sol";

Expand Down Expand Up @@ -77,7 +77,7 @@ struct Addresses {
TUPInfo eigenStrategy;
}

contract ConfigParser is Script, Test {
contract ConfigParser is Script, StdAssertions {
using StringUtils for *;

string private _configPath;
Expand Down

0 comments on commit 53ffb0c

Please sign in to comment.