(seconds, expected)
| 2329 | ], |
| 2330 | ) |
| 2331 | def test_format_session_duration(seconds, expected): |
| 2332 | from _pytest.terminal import format_session_duration |
| 2333 | |
| 2334 | assert format_session_duration(seconds) == expected |
| 2335 | |
| 2336 | |
| 2337 | def test_collecterror(pytester: Pytester) -> None: |
nothing calls this directly
no test coverage detected