Skip to content

Commit

Permalink
mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
ethteck committed Aug 9, 2022
1 parent b1bae4f commit 7fad886
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/coreapp/tests.py
Original file line number Diff line number Diff line change
@@ -521,8 +521,8 @@ def test_dummy_compiler(self) -> None:
len(result.elf_object), 0, "The compilation result should be non-null"
)

@parameterized.expand(input=[(c,) for c in compilers.available_compilers()])
def test_all_compilers(self, compiler) -> None:
@parameterized.expand(input=[(c,) for c in compilers.available_compilers()]) # type: ignore
def test_all_compilers(self, compiler: Compiler) -> None:
"""
Ensure that we can run a simple compilation for all available compilers
"""

0 comments on commit 7fad886

Please sign in to comment.