(
value: Mapping[_KT, _VT] | Iterable[_KT], expected: dict[_KT, _VT] | Iterable[_KT]
)
| 203 | ], |
| 204 | ) |
| 205 | def test_without_none_values( |
| 206 | value: Mapping[_KT, _VT] | Iterable[_KT], expected: dict[_KT, _VT] | Iterable[_KT] |
| 207 | ) -> None: |
| 208 | assert without_none_values(value) == expected |
nothing calls this directly
no test coverage detected