Skip to content

Commit

Permalink
fixed linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
BrentBlanckaert committed Nov 15, 2024
1 parent 0b78aba commit a792223
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/test_stacktrace_cleaners.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ def test_javascript_assertion_error():
actual_cleaned = language_config.cleanup_stacktrace(original)
assert actual_cleaned == expected_cleaned


def test_typescript_assertion_error():
workdir = "/home/bliep/bloep/universal-judge/workdir"
language_config = get_language(workdir, "typescript")
Expand Down Expand Up @@ -94,6 +95,7 @@ def test_javascript_type_error():
actual_cleaned = language_config.cleanup_stacktrace(original)
assert actual_cleaned == expected_cleaned


def test_typescript_type_error():
workdir = "/home/bliep/bloep/universal-judge/workdir"
language_config = get_language(workdir, "typescript")
Expand Down
1 change: 1 addition & 0 deletions tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ def test_javascript_ast_parse():
namings = frozenset(output.stdout.strip().split(", "))
assert namings == expected


def test_typescript_ast_parse():
expected = frozenset(
[
Expand Down

0 comments on commit a792223

Please sign in to comment.