(self, endpoint_url=None)
| 47 | |
| 48 | class CustomApiClient(FakeApiClient): |
| 49 | def __init__(self, endpoint_url=None): |
| 50 | call_info["endpoint_url"] = endpoint_url |
| 51 | super().__init__(endpoint_url=endpoint_url) |
| 52 | |
| 53 | runner = CliRunner() |
| 54 | monkeypatch.setattr(cli_main, "ApiClient", CustomApiClient) |