Skip to content

Commit

Permalink
fix transpiler test
Browse files Browse the repository at this point in the history
  • Loading branch information
apkrelling committed Nov 8, 2024
1 parent 1ad3dd9 commit eb17010
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/transpilers/test_python.py
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ def test_transpiler_for_range_expr() -> None:
decl_a = astx.InlineVariableDeclaration(
"a", type_=astx.Int32, value=astx.LiteralInt32(-1)
)
start = astx.LiteralInt32(1)
start = astx.LiteralInt32(0)
end = astx.LiteralInt32(10)
step = astx.LiteralInt32(1)
body = astx.Block()
Expand Down

0 comments on commit eb17010

Please sign in to comment.