Commit 0f1692af authored by Mark Tyneway's avatar Mark Tyneway Committed by GitHub

Merge pull request #4989 from ethereum-optimism/willc/copy-pasta

fix(contracts-periphery): Fix attestation station test name
parents a47294c7 6f6629b6
......@@ -3,10 +3,9 @@ pragma solidity 0.8.15;
/* Testing utilities */
import { Test } from "forge-std/Test.sol";
import { AssetReceiver } from "../universal/AssetReceiver.sol";
import { AttestationStation } from "../universal/op-nft/AttestationStation.sol";
contract AssetReceiver_Initializer is Test {
contract AttestationStation_Initializer is Test {
address alice_attestor = address(128);
address bob = address(256);
address sally = address(512);
......@@ -21,7 +20,7 @@ contract AssetReceiver_Initializer is Test {
}
}
contract AssetReceiverTest is AssetReceiver_Initializer {
contract AttestationStationTest is AttestationStation_Initializer {
event AttestationCreated(
address indexed creator,
address indexed about,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment