Skip to content

Commit

Permalink
Remove useless comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ClaireGuerreGiordano committed Sep 26, 2024
1 parent b09efa8 commit 527e590
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions tests/src/erc7730/mapper/test_mapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ def test_roundtrip(input: str) -> None:
)
newErc7730Descriptor = to_erc7730_mapper(eip712DappDescriptor)
assert newErc7730Descriptor is not None
if erc7730Descriptor.context is not None and erc7730Descriptor.context.eip712.domain is not None: # type: ignore
assert newErc7730Descriptor.context.eip712.domain.name == erc7730Descriptor.context.eip712.domain.name # type: ignore
if erc7730Descriptor.context is not None and erc7730Descriptor.context.eip712.domain is not None:
assert newErc7730Descriptor.context.eip712.domain.name == erc7730Descriptor.context.eip712.domain.name


def test_roundtrip_from_eip712() -> None:
Expand All @@ -51,7 +51,3 @@ def test_roundtrip_from_eip712() -> None:
assert isinstance(new_eip712, EIP712DAppDescriptor)
print_diff(original_eip712, new_eip712)
assert original_eip712 == new_eip712

""" address: str
name: str = Field(alias="contractName")
messages: List[EIP712MessageDescriptor]]"""

0 comments on commit 527e590

Please sign in to comment.