Skip to content

Commit

Permalink
pytype
Browse files Browse the repository at this point in the history
  • Loading branch information
gizmoguy committed Sep 19, 2024
1 parent 62c2903 commit 0c3dbc1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion clib/clib_mininet_test_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,8 @@ def all_tests_successful(results):
successful_results = [
result
for result in results
if result.wasSuccessful() or result.unexpected_success
if result.wasSuccessful()
or (isinstance(result, FaucetResult) and result.unexpected_success)
]
return len(results) == len(successful_results)

Expand Down

0 comments on commit 0c3dbc1

Please sign in to comment.