Skip to content

Commit 8ba6416

Browse files
committed
fix: tests
1 parent bf0c5ee commit 8ba6416

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

test/Base.sol

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ pragma solidity ^0.8.13;
33

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

6-
import {PecorinoConstants} from "../src/chains/Pecorino.sol";
6+
import {ParmigianaConstants} from "../src/chains/Parmigiana.sol";
77

8-
contract PecorinoTest is Test {
8+
contract ParmigianaTest is Test {
99
constructor() {
10-
vm.chainId(PecorinoConstants.ROLLUP_CHAIN_ID);
10+
vm.chainId(ParmigianaConstants.ROLLUP_CHAIN_ID);
1111
}
1212
}
1313

test/SelfOwned.sol

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ pragma solidity ^0.8.13;
33

44
import {BurnMintERC20} from "../src/vendor/BurnMintERC20.sol";
55

6-
import {PecorinoTest} from "./Base.sol";
7-
6+
import {ParmigianaTest} from "./Base.sol";
87
import {SignetL2} from "../src/l2/Signet.sol";
98
import {SelfOwned} from "../src/l2/SelfOwned.sol";
109
import {AddressAliasHelper} from "../src/vendor/AddressAliasHelper.sol";
@@ -20,7 +19,7 @@ contract SelfOwnedToken is SignetL2, BurnMintERC20 {
2019
}
2120
}
2221

23-
contract TestSelfOwned is PecorinoTest {
22+
contract TestSelfOwned is ParmigianaTest {
2423
SelfOwnedToken token;
2524

2625
SelfOwnedNothing nothing;

0 commit comments

Comments
 (0)