| Index: third_party/typ/typ/json_results.py
|
| diff --git a/third_party/typ/typ/json_results.py b/third_party/typ/typ/json_results.py
|
| index b8500bf4d8cfd88e202c48dd3c22431aeab26d2b..62233ab619af122dbd607fb0da1211a7d93873dc 100644
|
| --- a/third_party/typ/typ/json_results.py
|
| +++ b/third_party/typ/typ/json_results.py
|
| @@ -151,7 +151,7 @@ def _actual_results_for_test(test_name, results):
|
| actuals.append('PASS')
|
| elif r.actual == ResultType.Skip:
|
| actuals.append('SKIP')
|
| - if not actuals:
|
| + if not actuals: # pragma: untested
|
| actuals.append('SKIP')
|
| return ' '.join(actuals)
|
|
|
|
|