Normal close should complete without error.
(self)
| 178 | |
| 179 | @pytest.mark.asyncio |
| 180 | async def test_safe_close_normal(self): |
| 181 | """Normal close should complete without error.""" |
| 182 | tm = DummyToolManager() |
| 183 | await _safe_close(tm) |
| 184 | assert tm.closed |
| 185 | |
| 186 | |
| 187 | # --------------------------------------------------------------------------- # |
nothing calls this directly
no test coverage detected