Skip to content

Commit

Permalink
format test case
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-cooper committed Dec 11, 2024
1 parent a79b88f commit 2ea7923
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/unit/compiler/venom/test_literals_codesize.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,9 @@ def test_literal_codesize_shl(orig_value):
assert op0.value << op1.value == orig_value


should_not_shl = [0x0, (((2 ** (256 - 2)) - 1) << (2 * 8)) ^ (2**255)] + [
1 << i for i in range(0, 3 * 8)
should_not_shl = [1 << i for i in range(0, 3 * 8)] + [
0x0,
(((2 ** (256 - 2)) - 1) << (2 * 8)) ^ (2**255),
]


Expand Down

0 comments on commit 2ea7923

Please sign in to comment.