Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
iFrostizz committed Dec 9, 2023
1 parent 5faddf8 commit 261fb62
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/functional/builtins/folding/test_slice.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,11 @@ def foo(bytes_in: bytes32) -> Bytes[{length}]:

start *= 2
length *= 2
assert contract.foo(as_hex) == new_node.value == bytes.fromhex(as_hex[2:][start : (start + length)])
assert (
contract.foo(as_hex)
== new_node.value
== bytes.fromhex(as_hex[2:][start : (start + length)])
)


@pytest.mark.fuzzing
Expand Down

0 comments on commit 261fb62

Please sign in to comment.