(self)
| 358 | ) |
| 359 | |
| 360 | def test_load_image_quiet(self): |
| 361 | self.client.load_image('Byte Stream....', quiet=True) |
| 362 | |
| 363 | fake_request.assert_called_with( |
| 364 | 'POST', |
| 365 | f"{url_prefix}images/load", |
| 366 | data='Byte Stream....', |
| 367 | stream=True, |
| 368 | params={'quiet': True}, |
| 369 | timeout=DEFAULT_TIMEOUT_SECONDS |
| 370 | ) |
nothing calls this directly
no test coverage detected