Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jan 6, 2025
1 parent 5b0d293 commit e2c23f8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_translator/test_lexer.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,9 @@ def test_data_types_tokenization():
assert any(t[0] == "FLOAT" for t in tokens), "Missing 'FLOAT' token"
assert any(t[0] == "DOUBLE" for t in tokens), "Missing 'DOUBLE' token"
assert any(t[0] == "BOOL" for t in tokens), "Missing 'BOOL' token"
assert any(t[0] == "UNSIGNED_INT" for t in tokens), "Missing 'UNSIGNED INT' token"
assert any(
t[0] == "UNSIGNED_INT" for t in tokens
), "Missing 'UNSIGNED INT' token"
except SyntaxError:
pytest.fail("Data types tokenization not implemented.")

Expand Down

0 comments on commit e2c23f8

Please sign in to comment.