Commit 03931967 authored by mergify[bot]'s avatar mergify[bot] Committed by GitHub

Merge pull request #4372 from ethereum-optimism/willc/foundry-test-fix

fix(contracts-periphery): Fix initial check in foundry test
parents 0e678d63 fe8f2afd
---
'@eth-optimism/contracts-periphery': patch
---
Minor fix to AttestationStation test
...@@ -3,8 +3,6 @@ pragma solidity 0.8.15; ...@@ -3,8 +3,6 @@ pragma solidity 0.8.15;
/* Testing utilities */ /* Testing utilities */
import { Test } from "forge-std/Test.sol"; import { Test } from "forge-std/Test.sol";
import { TestERC20 } from "../testing/helpers/TestERC20.sol";
import { TestERC721 } from "../testing/helpers/TestERC721.sol";
import { AssetReceiver } from "../universal/AssetReceiver.sol"; import { AssetReceiver } from "../universal/AssetReceiver.sol";
import { AttestationStation } from "../universal/op-nft/AttestationStation.sol"; import { AttestationStation } from "../universal/op-nft/AttestationStation.sol";
...@@ -45,9 +43,9 @@ contract AssetReceiverTest is AssetReceiver_Initializer { ...@@ -45,9 +43,9 @@ contract AssetReceiverTest is AssetReceiver_Initializer {
// assert the attestation starts empty // assert the attestation starts empty
assertEq( assertEq(
attestationStation.attestations( attestationStation.attestations(
alice_attestor,
attestationData.about, attestationData.about,
attestationData.key, attestationData.key
attestationData.val
), ),
"" ""
); );
......
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