Skip to content

Commit 1aa512d

Browse files
committed
fix: tests
1 parent 952adf9 commit 1aa512d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
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 & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ pragma solidity ^0.8.13;
33

44
import {SimpleERC20} from "simple-erc20/SimpleERC20.sol";
55

6-
import {PecorinoTest} from "./Base.sol";
6+
import {ParmigianaTest} from "./Base.sol";
77
import {SignetL2} from "../src/l2/Signet.sol";
88
import {AddressAliasHelper} from "../src/vendor/AddressAliasHelper.sol";
99

@@ -13,7 +13,7 @@ contract SelfOwnedToken is SignetL2, SimpleERC20 {
1313
}
1414
}
1515

16-
contract TestSelfOwned is PecorinoTest {
16+
contract TestSelfOwned is ParmigianaTest {
1717
SelfOwnedToken token;
1818

1919
constructor() {

0 commit comments

Comments
 (0)