Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/dvsim/testplan.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ def do_substitutions(self, substitutions) -> None:

self.tests = resolved_tests

def map_test_results(self, test_results) -> None:
def map_test_results(self, test_results: list[Result]) -> None:
"""Map test results to tests against this testpoint.

Given a list of test results find the ones that match the tests listed
Expand All @@ -221,7 +221,6 @@ def map_test_results(self, test_results) -> None:
return

for tr in test_results:
assert isinstance(tr, Result)
if tr.name in self.tests:
tr.mapped = True
self.test_results.append(tr)
Expand Down
Loading