Skip to content

Commit

Permalink
rename src/test to src/tests
Browse files Browse the repository at this point in the history
  • Loading branch information
smol-ninja committed Feb 20, 2025
1 parent e642dfe commit a1fc999
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ This repo contains the following subdirectories:

- `src/interfaces`: Interfaces for [`Adminable`](src/Adminable.sol) and [`Batch`](src/Batch.sol) contracts.
- `src/mocks`: Mock contracts used by external projects in tests.
- `src/test`: Helper contracts used by external projects in tests and deployment scripts.
- `src/tests`: Helper contracts used by external projects in tests and deployment scripts.

## Install

Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/Unit.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
pragma solidity >=0.8.22 <0.9.0;

import { StdAssertions } from "forge-std/src/StdAssertions.sol";
import { BaseTest } from "src/test/BaseTest.sol";
import { BaseTest } from "src/tests/BaseTest.sol";

abstract contract Unit_Test is BaseTest, StdAssertions {
address internal admin;
Expand Down
2 changes: 1 addition & 1 deletion tests/concrete/base-script/BaseScript.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pragma solidity >=0.8.22 <0.9.0;
import { Strings } from "@openzeppelin/contracts/utils/Strings.sol";
import { StdAssertions } from "forge-std/src/StdAssertions.sol";

import { BaseScript } from "src/test/BaseScript.sol";
import { BaseScript } from "src/tests/BaseScript.sol";

contract BaseScriptMock is BaseScript { }

Expand Down

0 comments on commit a1fc999

Please sign in to comment.