Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-cooper committed Dec 24, 2024
1 parent 74c2446 commit 907af7d
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions tests/functional/venom/test_venom_repr.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import glob

import textwrap

import pytest

from tests.venom_utils import assert_ctx_eq, parse_venom
Expand Down Expand Up @@ -29,14 +29,18 @@ def test_round_trip_example(vy_filename, optimize):

_round_trip_helper(vyper_source, optimize)

vyper_sources = ["""

vyper_sources = [
"""
@external
def _loop() -> uint256:
res: uint256 = 9
for i: uint256 in range(res, bound=10):
res = res + i
return res
"""]
"""
]


@pytest.mark.parametrize("vyper_source", vyper_sources)
def test_round_trip_source(vyper_source, optimize):
Expand Down

0 comments on commit 907af7d

Please sign in to comment.