(msg)
| 1205 | call_count = [0] |
| 1206 | |
| 1207 | def check_with_delay(msg): |
| 1208 | call_count[0] += 1 |
| 1209 | if call_count[0] > 1: |
| 1210 | raise ClientDisconnectedError("Disconnected") |
| 1211 | |
| 1212 | check_disconnect = MagicMock(side_effect=check_with_delay) |
| 1213 |
nothing calls this directly
no test coverage detected