Skip to content

Commit

Permalink
style: rename tests (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
dristpunk authored Nov 21, 2023
1 parent b38d088 commit f66819f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions out/Greeter.sol/Greeter.json
Original file line number Diff line number Diff line change
Expand Up @@ -307,13 +307,13 @@
},
"settings": {
"remappings": [
":contracts/=solidity/contracts/",
":ds-test/=node_modules/ds-test/src/",
":forge-std/=node_modules/forge-std/src/",
":interfaces/=solidity/interfaces/",
":isolmate/=node_modules/isolmate/src/",
":prb/test/=node_modules/prb/test/src/",
":test/=solidity/test/"
"contracts/=solidity/contracts/",
"ds-test/=node_modules/ds-test/src/",
"forge-std/=node_modules/forge-std/src/",
"interfaces/=solidity/interfaces/",
"isolmate/=node_modules/isolmate/src/",
"prb/test/=node_modules/prb/test/src/",
"test/=solidity/test/"
],
"optimizer": {
"enabled": true,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// SPDX-License-Identifier: MIT
pragma solidity =0.8.19;

import {CommonE2EBase} from 'test/e2e/Common.sol';
import {IntegrationBase} from 'test/integration/IntegrationBase.sol';

contract E2EGreeter is CommonE2EBase {
contract IntegrationGreeter is IntegrationBase {
function test_Greet() public {
uint256 _whaleBalance = _dai.balanceOf(_daiWhale);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {IERC20} from 'isolmate/interfaces/tokens/IERC20.sol';

import {Greeter, IGreeter} from 'contracts/Greeter.sol';

contract CommonE2EBase is DSTestFull {
contract IntegrationBase is DSTestFull {
uint256 internal constant _FORK_BLOCK = 15_452_788;

string internal _initialGreeting = 'hola';
Expand Down

0 comments on commit f66819f

Please sign in to comment.