Skip to content

Commit

Permalink
test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulMarisOUMary committed Oct 18, 2023
1 parent 5847fd5 commit 2729ed5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,4 +204,4 @@ def test_print_statements(input_code, expected_output):
("x is call y 1 2\n", [('variable_declaration_statement', 'x', ('call_statement', 'y', [('integer_literal', 1), ('integer_literal', 2)]))]),
])
def test_call_assignment_to_variable(input_code, expected_output):
assert parse_code(input_code) == expected_output
assert parse_code(input_code) == expected_output

0 comments on commit 2729ed5

Please sign in to comment.