(ms: int, expected: str)
| 43 | ], |
| 44 | ) |
| 45 | def test_format_duration_most_significant_only(ms: int, expected: str) -> None: |
| 46 | assert format_duration(ms, most_significant_only=True) == expected |
| 47 | |
| 48 | |
| 49 | def test_format_duration_hide_trailing_zeros() -> None: |
nothing calls this directly
no test coverage detected