Skip to content

Commit

Permalink
fix folding sha keccak test
Browse files Browse the repository at this point in the history
  • Loading branch information
tserg committed Oct 26, 2023
1 parent e520c25 commit fd95436
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/builtins/folding/test_keccak_sha.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def foo(a: Bytes[100]) -> bytes32:


@pytest.mark.fuzzing
@given(value=st.binary(min_size=1, max_size=32))
@given(value=st.binary(min_size=32, max_size=32))
@settings(max_examples=50)
@pytest.mark.parametrize("fn_name", ["keccak256", "sha256"])
def test_hex(get_contract, value, fn_name):
Expand Down

0 comments on commit fd95436

Please sign in to comment.