Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tserg committed Jan 7, 2024
1 parent 1caba88 commit 62208d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/unit/compiler/asm/test_asm_optimizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def ctor_only():
@internal
def runtime_only():
for i in range(10):
for i: uint256 in range(10):
self.s += 1
@external
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/compiler/test_source_map.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
@internal
def _baz(a: int128) -> int128:
b: int128 = a
for i in range(2, 5):
for i: int128 in range(2, 5):
b *= i
if b > 31337:
break
Expand Down

0 comments on commit 62208d5

Please sign in to comment.