Skip to content

Commit

Permalink
Fix script used in DeployAllContractsTest
Browse files Browse the repository at this point in the history
  • Loading branch information
fedgiac committed Feb 7, 2024
1 parent 2fc13ae commit 9ad59fe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/script/DeployAllContracts.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ pragma solidity >=0.8.0 <0.9.0;

import {Test} from "forge-std/Test.sol";

import {DeployConstantProduct} from "script/DeployAllContracts.s.sol";
import {DeployAllContracts} from "script/DeployAllContracts.s.sol";

contract DeployAllContractsTest is Test {
DeployConstantProduct script;
DeployAllContracts script;

function setUp() public {
script = new DeployConstantProduct();
script = new DeployAllContracts();
}

function testDoesNotRevert() public {
Expand Down

0 comments on commit 9ad59fe

Please sign in to comment.