Skip to content

Commit

Permalink
cleanup test imports and add some missing license headers
Browse files Browse the repository at this point in the history
  • Loading branch information
dmfxyz committed Mar 31, 2024
1 parent 227e417 commit 5feccd1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 9 deletions.
2 changes: 1 addition & 1 deletion lib/forge-std
Submodule forge-std updated 2 files
+6 −0 src/Vm.sol
+1 −1 test/Vm.t.sol
8 changes: 2 additions & 6 deletions src/test/CompleteMerkle.t.sol
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
// SPDX-License-Identifier: UNLICENSED
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "../Merkle.sol";
import "../CompleteMerkle.sol";
import "forge-std/Test.sol";
import "openzeppelin-contracts/contracts/utils/cryptography/MerkleProof.sol";
import "openzeppelin-contracts/contracts/utils/Strings.sol";
import "forge-std/console.sol";

contract GasComparisonTests is Test {
contract CompleteMerkleTest is Test {
CompleteMerkle m;
Merkle GAS_COMP_MERKLE;

function setUp() public {
m = new CompleteMerkle();
Expand Down
2 changes: 1 addition & 1 deletion src/test/Merkle.t.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "../Merkle.sol";
Expand Down

0 comments on commit 5feccd1

Please sign in to comment.